Class EmailType

java.lang.Object
org.bremersee.gpx.model.EmailType
All Implemented Interfaces:
Serializable

public class EmailType extends Object implements Serializable
An email address. Broken into two parts (id and domain) to help prevent email harvesting.

Java class for emailType complex type.

The following schema fragment specifies the expected content contained within this class.


 <complexType name="emailType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="domain" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
     </restriction>
   </complexContent>
 </complexType>
 
See Also:
  • Field Details

  • Constructor Details

    • EmailType

      public EmailType()
  • Method Details

    • getId

      public String getId()
      Gets the value of the id property.
      Returns:
      possible object is String
    • setId

      public void setId(String value)
      Sets the value of the id property.
      Parameters:
      value - allowed object is String
    • getDomain

      public String getDomain()
      Gets the value of the domain property.
      Returns:
      possible object is String
    • setDomain

      public void setDomain(String value)
      Sets the value of the domain property.
      Parameters:
      value - allowed object is String