org.adorsys.psd2.iso20022.camt053.Party11Choice Maven / Gradle / Ivy
//
// 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.20 um 11:40:51 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.XmlType;
/**
* Java-Klasse für Party11Choice complex type.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType name="Party11Choice">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice>
* <element name="OrgId" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}OrganisationIdentification8"/>
* <element name="PrvtId" type="{urn:iso:std:iso:20022:tech:xsd:camt.053.001.06}PersonIdentification5"/>
* </choice>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Party11Choice", propOrder = {
"orgId",
"prvtId"
})
public class Party11Choice {
@XmlElement(name = "OrgId")
protected OrganisationIdentification8 orgId;
@XmlElement(name = "PrvtId")
protected PersonIdentification5 prvtId;
/**
* Ruft den Wert der orgId-Eigenschaft ab.
*
* @return
* possible object is
* {@link OrganisationIdentification8 }
*
*/
public OrganisationIdentification8 getOrgId() {
return orgId;
}
/**
* Legt den Wert der orgId-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link OrganisationIdentification8 }
*
*/
public void setOrgId(OrganisationIdentification8 value) {
this.orgId = value;
}
/**
* Ruft den Wert der prvtId-Eigenschaft ab.
*
* @return
* possible object is
* {@link PersonIdentification5 }
*
*/
public PersonIdentification5 getPrvtId() {
return prvtId;
}
/**
* Legt den Wert der prvtId-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link PersonIdentification5 }
*
*/
public void setPrvtId(PersonIdentification5 value) {
this.prvtId = value;
}
}