You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juddi.apache.org by sv...@apache.org on 2004/07/02 20:23:33 UTC

cvs commit: ws-juddi/src/java/org/apache/juddi/datatype Email.java

sviens      2004/07/02 11:23:33

  Modified:    src/java/org/apache/juddi/datatype Email.java
  Log:
  Refactored/renamed internal emailAddress property. Has no effect on functionality.
  
  Revision  Changes    Path
  1.3       +5 -5      ws-juddi/src/java/org/apache/juddi/datatype/Email.java
  
  Index: Email.java
  ===================================================================
  RCS file: /home/cvs/ws-juddi/src/java/org/apache/juddi/datatype/Email.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Email.java	11 Mar 2004 18:06:10 -0000	1.2
  +++ Email.java	2 Jul 2004 18:23:33 -0000	1.3
  @@ -27,7 +27,7 @@
    */
   public class Email implements RegistryObject
   {
  -  String emailAddress;
  +  String value;
     String useType;
   
     /**
  @@ -44,7 +44,7 @@
      */
     public Email(String email)
     {
  -    this.emailAddress = email;
  +    this.value = email;
     }
   
     /**
  @@ -55,7 +55,7 @@
      */
     public Email(String email, String type)
     {
  -    this.emailAddress = email;
  +    this.value = email;
       this.useType = type;
     }
   
  @@ -66,7 +66,7 @@
      */
     public void setValue(String email)
     {
  -    this.emailAddress = email;
  +    this.value = email;
     }
   
     /**
  @@ -76,7 +76,7 @@
      */
     public String getValue()
     {
  -    return this.emailAddress;
  +    return this.value;
     }
   
     /**