org.adorsys.psd2.iso20022.camt060.ClearingSystemMemberIdentification2 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.camt060;
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 ClearingSystemMemberIdentification2 complex type.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType name="ClearingSystemMemberIdentification2">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ClrSysId" type="{urn:iso:std:iso:20022:tech:xsd:camt.060.001.03}ClearingSystemIdentification2Choice" minOccurs="0"/>
* <element name="MmbId" type="{urn:iso:std:iso:20022:tech:xsd:camt.060.001.03}Max35Text"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ClearingSystemMemberIdentification2", propOrder = {
"clrSysId",
"mmbId"
})
public class ClearingSystemMemberIdentification2 {
@XmlElement(name = "ClrSysId")
protected ClearingSystemIdentification2Choice clrSysId;
@XmlElement(name = "MmbId", required = true)
protected String mmbId;
/**
* Ruft den Wert der clrSysId-Eigenschaft ab.
*
* @return
* possible object is
* {@link ClearingSystemIdentification2Choice }
*
*/
public ClearingSystemIdentification2Choice getClrSysId() {
return clrSysId;
}
/**
* Legt den Wert der clrSysId-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ClearingSystemIdentification2Choice }
*
*/
public void setClrSysId(ClearingSystemIdentification2Choice value) {
this.clrSysId = value;
}
/**
* Ruft den Wert der mmbId-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMmbId() {
return mmbId;
}
/**
* Legt den Wert der mmbId-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMmbId(String value) {
this.mmbId = value;
}
}