package at.gv.util.xsd.zkopf.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; /** * physical person * *

Java class for PhysicalPersonType complex type. * *

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

 * <complexType name="PhysicalPersonType">
 *   <complexContent>
 *     <extension base="{http://reference.e-government.gv.at/namespace/persondata/en/20040201#}AbstractPersonType">
 *       <sequence minOccurs="0">
 *         <element ref="{http://reference.e-government.gv.at/namespace/persondata/en/20040201#}Name"/>
 *         <element ref="{http://reference.e-government.gv.at/namespace/persondata/en/20040201#}DateOfBirth" minOccurs="0"/>
 *       </sequence>
 *       <anyAttribute namespace='##other'/>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PhysicalPersonType", propOrder = { "name", "dateOfBirth" }) public class PhysicalPersonType extends AbstractPersonType { @XmlElement(name = "Name") protected PersonNameType name; @XmlElement(name = "DateOfBirth") protected String dateOfBirth; /** * 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 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; } }