package at.gv.util.xsd.mis_v2; 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 at.gv.util.xsd.mis_v2.persondata.IdentificationType; /** * Deprecated request to get mandates from a specific person * *

Java-Klasse für PersonInformationType complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="PersonInformationType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{http://reference.e-government.gv.at/namespace/persondata/20020228#}Identification"/>
 *         <element name="GivenName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="FamilyName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element ref="{http://reference.e-government.gv.at/namespace/persondata/20020228#}DateOfBirth"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PersonInformationType", propOrder = { "identification", "givenName", "familyName", "dateOfBirth" }) public class PersonInformationType { @XmlElement(name = "Identification", namespace = "http://reference.e-government.gv.at/namespace/persondata/20020228#", required = true) protected IdentificationType identification; @XmlElement(name = "GivenName", required = true) protected String givenName; @XmlElement(name = "FamilyName", required = true) protected String familyName; @XmlElement(name = "DateOfBirth", namespace = "http://reference.e-government.gv.at/namespace/persondata/20020228#", required = true) @XmlSchemaType(name = "anySimpleType") protected String dateOfBirth; /** * Ruft den Wert der identification-Eigenschaft ab. * * @return * possible object is * {@link IdentificationType } * */ public IdentificationType getIdentification() { return identification; } /** * Legt den Wert der identification-Eigenschaft fest. * * @param value * allowed object is * {@link IdentificationType } * */ public void setIdentification(IdentificationType value) { this.identification = value; } /** * Ruft den Wert der givenName-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getGivenName() { return givenName; } /** * Legt den Wert der givenName-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setGivenName(String value) { this.givenName = value; } /** * Ruft den Wert der familyName-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getFamilyName() { return familyName; } /** * Legt den Wert der familyName-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setFamilyName(String value) { this.familyName = value; } /** * Ruft den Wert der dateOfBirth-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getDateOfBirth() { return dateOfBirth; } /** * Legt den Wert der dateOfBirth-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setDateOfBirth(String value) { this.dateOfBirth = value; } }