All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.adorsys.psd2.iso20022.camt053.DateAndPlaceOfBirth Maven / Gradle / Ivy

There is a newer version: 2.2.3
Show newest version
//
// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 generiert 
// Siehe http://java.sun.com/xml/jaxb 
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. 
// Generiert: 2017.12.22 um 02:39:24 PM CET 
//


package org.adorsys.psd2.iso20022.camt053;

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-Klasse für DateAndPlaceOfBirth complex type. * *

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

 * <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:camt.053.001.06}ISODate"/>
 *         <element name="PrvcOfBirth" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}Max35Text" minOccurs="0"/>
 *         <element name="CityOfBirth" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}Max35Text"/>
 *         <element name="CtryOfBirth" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}CountryCode"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DateAndPlaceOfBirth", propOrder = { "birthDt", "prvcOfBirth", "cityOfBirth", "ctryOfBirth" }) public class DateAndPlaceOfBirth { @XmlElement(name = "BirthDt", required = true) @XmlSchemaType(name = "date") protected XMLGregorianCalendar birthDt; @XmlElement(name = "PrvcOfBirth") protected String prvcOfBirth; @XmlElement(name = "CityOfBirth", required = true) protected String cityOfBirth; @XmlElement(name = "CtryOfBirth", required = true) protected String ctryOfBirth; /** * Ruft den Wert der birthDt-Eigenschaft ab. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getBirthDt() { return birthDt; } /** * Legt den Wert der birthDt-Eigenschaft fest. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setBirthDt(XMLGregorianCalendar value) { this.birthDt = value; } /** * Ruft den Wert der prvcOfBirth-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getPrvcOfBirth() { return prvcOfBirth; } /** * Legt den Wert der prvcOfBirth-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setPrvcOfBirth(String value) { this.prvcOfBirth = value; } /** * Ruft den Wert der cityOfBirth-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getCityOfBirth() { return cityOfBirth; } /** * Legt den Wert der cityOfBirth-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setCityOfBirth(String value) { this.cityOfBirth = value; } /** * Ruft den Wert der ctryOfBirth-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getCtryOfBirth() { return ctryOfBirth; } /** * Legt den Wert der ctryOfBirth-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setCtryOfBirth(String value) { this.ctryOfBirth = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy