Class ContactInformation
Java class for ContactInformation complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ContactInformation">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="telephone" type="{http://www.fpml.org/FpML-5/confirmation}TelephoneNumber" maxOccurs="unbounded" minOccurs="0"/>
<element name="email" type="{http://www.fpml.org/FpML-5/confirmation}NormalizedString" maxOccurs="unbounded" minOccurs="0"/>
<element name="address" type="{http://www.fpml.org/FpML-5/confirmation}Address" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the value of the address property.getEmail()Gets the value of the email property.Gets the value of the telephone property.voidsetAddress(Address value)Sets the value of the address property.
-
Field Details
-
telephone
-
email
-
address
-
-
Constructor Details
-
ContactInformation
public ContactInformation()
-
-
Method Details
-
getTelephone
Gets the value of the telephone property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the Jakarta XML Binding object. This is why there is not a
setmethod for the telephone property.For example, to add a new item, do as follows:
getTelephone().add(newItem);Objects of the following type(s) are allowed in the list
TelephoneNumber -
getEmail
Gets the value of the email property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the Jakarta XML Binding object. This is why there is not a
setmethod for the email property.For example, to add a new item, do as follows:
getEmail().add(newItem);Objects of the following type(s) are allowed in the list
String -
getAddress
Gets the value of the address property.- Returns:
- possible object is
Address
-
setAddress
Sets the value of the address property.- Parameters:
value- allowed object isAddress
-