package at.gv.util.xsd.szr.persondata; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

Java class for PhysicalPersonType complex type. * *

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

 * <complexType name="PhysicalPersonType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Identification" type="{http://reference.e-government.gv.at/namespace/persondata/20020228#}IdentificationType" minOccurs="0"/>
 *         <element name="Name" type="{http://reference.e-government.gv.at/namespace/persondata/20020228#}PersonNameType"/>
 *         <element name="AlternativeName" type="{http://reference.e-government.gv.at/namespace/persondata/20020228#}AlternativeNameType" minOccurs="0"/>
 *         <element name="Sex" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="DateOfBirth" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="PlaceOfBirth" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="CountryOfBirth" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Nationality" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PhysicalPersonType", propOrder = { "identification", "name", "alternativeName", "sex", "dateOfBirth", "placeOfBirth", "countryOfBirth", "nationality" }) public class PhysicalPersonType { @XmlElement(name = "Identification") protected IdentificationType identification; @XmlElement(name = "Name", required = true) protected PersonNameType name; @XmlElement(name = "AlternativeName") protected AlternativeNameType alternativeName; @XmlElement(name = "Sex") protected String sex; @XmlElement(name = "DateOfBirth") protected String dateOfBirth; @XmlElement(name = "PlaceOfBirth") protected String placeOfBirth; @XmlElement(name = "CountryOfBirth") protected String countryOfBirth; @XmlElement(name = "Nationality") protected String nationality; /** * Gets the value of the identification property. * * @return * possible object is * {@link IdentificationType } * */ public IdentificationType getIdentification() { return identification; } /** * Sets the value of the identification property. * * @param value * allowed object is * {@link IdentificationType } * */ public void setIdentification(IdentificationType value) { this.identification = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link PersonNameType } * */ public PersonNameType getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link PersonNameType } * */ public void setName(PersonNameType value) { this.name = value; } /** * Gets the value of the alternativeName property. * * @return * possible object is * {@link AlternativeNameType } * */ public AlternativeNameType getAlternativeName() { return alternativeName; } /** * Sets the value of the alternativeName property. * * @param value * allowed object is * {@link AlternativeNameType } * */ public void setAlternativeName(AlternativeNameType value) { this.alternativeName = value; } /** * Gets the value of the sex property. * * @return * possible object is * {@link String } * */ public String getSex() { return sex; } /** * Sets the value of the sex property. * * @param value * allowed object is * {@link String } * */ public void setSex(String value) { this.sex = value; } /** * Gets the value of the dateOfBirth property. * * @return * possible object is * {@link String } * */ public String getDateOfBirth() { return dateOfBirth; } /** * Sets the value of the dateOfBirth property. * * @param value * allowed object is * {@link String } * */ public void setDateOfBirth(String value) { this.dateOfBirth = value; } /** * Gets the value of the placeOfBirth property. * * @return * possible object is * {@link String } * */ public String getPlaceOfBirth() { return placeOfBirth; } /** * Sets the value of the placeOfBirth property. * * @param value * allowed object is * {@link String } * */ public void setPlaceOfBirth(String value) { this.placeOfBirth = value; } /** * Gets the value of the countryOfBirth property. * * @return * possible object is * {@link String } * */ public String getCountryOfBirth() { return countryOfBirth; } /** * Sets the value of the countryOfBirth property. * * @param value * allowed object is * {@link String } * */ public void setCountryOfBirth(String value) { this.countryOfBirth = value; } /** * Gets the value of the nationality property. * * @return * possible object is * {@link String } * */ public String getNationality() { return nationality; } /** * Sets the value of the nationality property. * * @param value * allowed object is * {@link String } * */ public void setNationality(String value) { this.nationality = value; } }