public class PersonReference extends Object
Java class for PersonReference complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="PersonReference">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element ref="{http://extension-point-uri/15/03}Extension" minOccurs="0"/>
<element name="Identification" type="{http://domain-model-uri/15/04}InstanceIdentifier" maxOccurs="unbounded"/>
<element name="Name" type="{http://domain-model-uri/15/04}BaseDemographics" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected Extension |
extension |
protected List<InstanceIdentifier> |
identification |
protected List<BaseDemographics> |
name |
| Constructor and Description |
|---|
PersonReference() |
| Modifier and Type | Method and Description |
|---|---|
Extension |
getExtension()
Gets the value of the extension property.
|
List<InstanceIdentifier> |
getIdentification()
Gets the value of the identification property.
|
List<BaseDemographics> |
getName()
Gets the value of the name property.
|
void |
setExtension(Extension value)
Sets the value of the extension property.
|
void |
setIdentification(List<InstanceIdentifier> value) |
void |
setName(List<BaseDemographics> value) |
protected Extension extension
protected List<InstanceIdentifier> identification
protected List<BaseDemographics> name
public Extension getExtension()
Extensionpublic void setExtension(Extension value)
value - allowed object is
Extensionpublic List<InstanceIdentifier> getIdentification()
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 identification property.
For example, to add a new item, do as follows:
getIdentification().add(newItem);
Objects of the following type(s) are allowed in the list
InstanceIdentifier
public List<BaseDemographics> getName()
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 name property.
For example, to add a new item, do as follows:
getName().add(newItem);
Objects of the following type(s) are allowed in the list
BaseDemographics
public void setIdentification(List<InstanceIdentifier> value)
public void setName(List<BaseDemographics> value)
Copyright © 2016. All rights reserved.