package org.kapott.hbci.sepa.jaxb.pain_008_001_02; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.datatype.XMLGregorianCalendar; /** * <p>Java class for DateAndPlaceOfBirth complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="DateAndPlaceOfBirth"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="BirthDt" type="{urn:iso:std:iso:20022:tech:xsd:pain.008.001.02}ISODate"/> * <element name="PrvcOfBirth" type="{urn:iso:std:iso:20022:tech:xsd:pain.008.001.02}Max35Text" minOccurs="0"/> * <element name="CityOfBirth" type="{urn:iso:std:iso:20022:tech:xsd:pain.008.001.02}Max35Text"/> * <element name="CtryOfBirth" type="{urn:iso:std:iso:20022:tech:xsd:pain.008.001.02}CountryCode"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DateAndPlaceOfBirth", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.008.001.02", propOrder = { "birthDt", "prvcOfBirth", "cityOfBirth", "ctryOfBirth" }) public class DateAndPlaceOfBirth { @XmlElement(name = "BirthDt", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.008.001.02", required = true) protected XMLGregorianCalendar birthDt; @XmlElement(name = "PrvcOfBirth", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.008.001.02") protected String prvcOfBirth; @XmlElement(name = "CityOfBirth", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.008.001.02", required = true) protected String cityOfBirth; @XmlElement(name = "CtryOfBirth", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.008.001.02", required = true) protected String ctryOfBirth; /** * Gets the value of the birthDt property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getBirthDt() { return birthDt; } /** * Sets the value of the birthDt property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setBirthDt(XMLGregorianCalendar value) { this.birthDt = value; } /** * Gets the value of the prvcOfBirth property. * * @return * possible object is * {@link String } * */ public String getPrvcOfBirth() { return prvcOfBirth; } /** * Sets the value of the prvcOfBirth property. * * @param value * allowed object is * {@link String } * */ public void setPrvcOfBirth(String value) { this.prvcOfBirth = value; } /** * Gets the value of the cityOfBirth property. * * @return * possible object is * {@link String } * */ public String getCityOfBirth() { return cityOfBirth; } /** * Sets the value of the cityOfBirth property. * * @param value * allowed object is * {@link String } * */ public void setCityOfBirth(String value) { this.cityOfBirth = value; } /** * Gets the value of the ctryOfBirth property. * * @return * possible object is * {@link String } * */ public String getCtryOfBirth() { return ctryOfBirth; } /** * Sets the value of the ctryOfBirth property. * * @param value * allowed object is * {@link String } * */ public void setCtryOfBirth(String value) { this.ctryOfBirth = value; } }