// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See http://java.sun.com/xml/jaxb // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2014.01.29 at 11:13:18 AM CET // package at.gv.util.xsd.stork; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** *

Java class for representationPerson complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="representationPerson">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <choice>
 *         <sequence>
 *           <element name="eIdentifier" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *           <element name="givenName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *           <element name="surname" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *           <element name="dateOfBirth" type="{http://www.w3.org/2001/XMLSchema}date"/>
 *         </sequence>
 *         <sequence>
 *           <element name="eLPIdentifier" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *           <element name="legalName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *           <element name="adress" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *           <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         </sequence>
 *       </choice>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "representationPerson", propOrder = { "eIdentifier", "givenName", "surname", "dateOfBirth", "elpIdentifier", "legalName", "adress", "type" }) public class RepresentationPerson { protected String eIdentifier; protected String givenName; protected String surname; @XmlSchemaType(name = "date") protected XMLGregorianCalendar dateOfBirth; @XmlElement(name = "eLPIdentifier") protected String elpIdentifier; protected String legalName; protected String adress; protected String type; /** * Gets the value of the eIdentifier property. * * @return * possible object is * {@link String } * */ public String getEIdentifier() { return eIdentifier; } /** * Sets the value of the eIdentifier property. * * @param value * allowed object is * {@link String } * */ public void setEIdentifier(String value) { this.eIdentifier = value; } /** * Gets the value of the givenName property. * * @return * possible object is * {@link String } * */ public String getGivenName() { return givenName; } /** * Sets the value of the givenName property. * * @param value * allowed object is * {@link String } * */ public void setGivenName(String value) { this.givenName = value; } /** * Gets the value of the surname property. * * @return * possible object is * {@link String } * */ public String getSurname() { return surname; } /** * Sets the value of the surname property. * * @param value * allowed object is * {@link String } * */ public void setSurname(String value) { this.surname = value; } /** * Gets the value of the dateOfBirth property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getDateOfBirth() { return dateOfBirth; } /** * Sets the value of the dateOfBirth property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setDateOfBirth(XMLGregorianCalendar value) { this.dateOfBirth = value; } /** * Gets the value of the elpIdentifier property. * * @return * possible object is * {@link String } * */ public String getELPIdentifier() { return elpIdentifier; } /** * Sets the value of the elpIdentifier property. * * @param value * allowed object is * {@link String } * */ public void setELPIdentifier(String value) { this.elpIdentifier = value; } /** * Gets the value of the legalName property. * * @return * possible object is * {@link String } * */ public String getLegalName() { return legalName; } /** * Sets the value of the legalName property. * * @param value * allowed object is * {@link String } * */ public void setLegalName(String value) { this.legalName = value; } /** * Gets the value of the adress property. * * @return * possible object is * {@link String } * */ public String getAdress() { return adress; } /** * Sets the value of the adress property. * * @param value * allowed object is * {@link String } * */ public void setAdress(String value) { this.adress = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } }