Package net.wirelabs.jmaps.example.gpx
Class EmailType
- java.lang.Object
-
- net.wirelabs.jmaps.example.gpx.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 Summary
Constructors Constructor Description EmailType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDomain()Gets the value of the domain property.StringgetId()Gets the value of the id property.voidsetDomain(String value)Sets the value of the domain property.voidsetId(String value)Sets the value of the id property.
-