public class Contact extends Object
Java class for contact complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="contact"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{urn:uddi-org:api_v2}description" maxOccurs="unbounded" minOccurs="0"/> <element ref="{urn:uddi-org:api_v2}personName"/> <element ref="{urn:uddi-org:api_v2}phone" maxOccurs="unbounded" minOccurs="0"/> <element ref="{urn:uddi-org:api_v2}email" maxOccurs="unbounded" minOccurs="0"/> <element ref="{urn:uddi-org:api_v2}address" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="useType" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
Modifier and Type | Field and Description |
---|---|
protected List<Address> |
address |
protected List<Description> |
description |
protected List<Email> |
email |
protected String |
personName |
protected List<Phone> |
phone |
protected String |
useType |
Constructor and Description |
---|
Contact() |
Modifier and Type | Method and Description |
---|---|
List<Address> |
getAddress()
Gets the value of the address property.
|
List<Description> |
getDescription()
Gets the value of the description property.
|
List<Email> |
getEmail()
Gets the value of the email property.
|
String |
getPersonName()
Gets the value of the personName property.
|
List<Phone> |
getPhone()
Gets the value of the phone property.
|
String |
getUseType()
Gets the value of the useType property.
|
void |
setPersonName(String value)
Sets the value of the personName property.
|
void |
setUseType(String value)
Sets the value of the useType property.
|
protected List<Description> description
protected String personName
protected String useType
public List<Description> getDescription()
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 JAXB object.
This is why there is not a set
method for the description property.
For example, to add a new item, do as follows:
getDescription().add(newItem);
Objects of the following type(s) are allowed in the list
Description
public String getPersonName()
String
public void setPersonName(String value)
value
- allowed object is
String
public List<Phone> getPhone()
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 JAXB object.
This is why there is not a set
method for the phone property.
For example, to add a new item, do as follows:
getPhone().add(newItem);
Objects of the following type(s) are allowed in the list
Phone
public List<Email> getEmail()
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 JAXB object.
This is why there is not a set
method 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
Email
public List<Address> getAddress()
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 JAXB object.
This is why there is not a set
method for the address property.
For example, to add a new item, do as follows:
getAddress().add(newItem);
Objects of the following type(s) are allowed in the list
Address
public String getUseType()
String
Copyright © 2004–2021 The Apache Software Foundation. All rights reserved.