Class EmailType


  • public class EmailType
    extends Object
    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>
     
    • Constructor Detail

      • EmailType

        public EmailType()
    • Method Detail

      • 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