Package iofXml.v3
Class Contact
- java.lang.Object
-
- iofXml.v3.Contact
-
public class Contact extends java.lang.Object
Contact information for a person, organisation or other entity.Java class for Contact complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Contact"> <simpleContent> <extension base="<http://www.w3.org/2001/XMLSchema>string"> <attribute name="type" use="required"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN"> <enumeration value="PhoneNumber"/> <enumeration value="MobilePhoneNumber"/> <enumeration value="FaxNumber"/> <enumeration value="EmailAddress"/> <enumeration value="WebAddress"/> <enumeration value="Other"/> </restriction> </simpleType> </attribute> <attribute name="modifyTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" /> </extension> </simpleContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected javax.xml.datatype.XMLGregorianCalendar
modifyTime
protected java.lang.String
type
protected java.lang.String
value
-
Constructor Summary
Constructors Constructor Description Contact()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.xml.datatype.XMLGregorianCalendar
getModifyTime()
Gets the value of the modifyTime property.java.lang.String
getType()
Gets the value of the type property.java.lang.String
getValue()
Gets the value of the value property.void
setModifyTime(javax.xml.datatype.XMLGregorianCalendar value)
Sets the value of the modifyTime property.void
setType(java.lang.String value)
Sets the value of the type property.void
setValue(java.lang.String value)
Sets the value of the value property.
-
-
-
Method Detail
-
getValue
public java.lang.String getValue()
Gets the value of the value property.- Returns:
- possible object is
String
-
setValue
public void setValue(java.lang.String value)
Sets the value of the value property.- Parameters:
value
- allowed object isString
-
getType
public java.lang.String getType()
Gets the value of the type property.- Returns:
- possible object is
String
-
setType
public void setType(java.lang.String value)
Sets the value of the type property.- Parameters:
value
- allowed object isString
-
getModifyTime
public javax.xml.datatype.XMLGregorianCalendar getModifyTime()
Gets the value of the modifyTime property.- Returns:
- possible object is
XMLGregorianCalendar
-
setModifyTime
public void setModifyTime(javax.xml.datatype.XMLGregorianCalendar value)
Sets the value of the modifyTime property.- Parameters:
value
- allowed object isXMLGregorianCalendar
-
-