org.adorsys.psd2.iso20022.camt054.FinancialInstitutionIdentification8 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.22 um 02:39:24 PM CET
//
package org.adorsys.psd2.iso20022.camt054;
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 FinancialInstitutionIdentification8 complex type.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType name="FinancialInstitutionIdentification8">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="BICFI" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}BICFIIdentifier" minOccurs="0"/>
* <element name="ClrSysMmbId" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}ClearingSystemMemberIdentification2" minOccurs="0"/>
* <element name="Nm" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}Max140Text" minOccurs="0"/>
* <element name="PstlAdr" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}PostalAddress6" minOccurs="0"/>
* <element name="Othr" type="{urn:iso:std:iso:20022:tech:xsd:camt.054.001.06}GenericFinancialIdentification1" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FinancialInstitutionIdentification8", propOrder = {
"bicfi",
"clrSysMmbId",
"nm",
"pstlAdr",
"othr"
})
public class FinancialInstitutionIdentification8 {
@XmlElement(name = "BICFI")
protected String bicfi;
@XmlElement(name = "ClrSysMmbId")
protected ClearingSystemMemberIdentification2 clrSysMmbId;
@XmlElement(name = "Nm")
protected String nm;
@XmlElement(name = "PstlAdr")
protected PostalAddress6 pstlAdr;
@XmlElement(name = "Othr")
protected GenericFinancialIdentification1 othr;
/**
* Ruft den Wert der bicfi-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBICFI() {
return bicfi;
}
/**
* Legt den Wert der bicfi-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBICFI(String value) {
this.bicfi = value;
}
/**
* Ruft den Wert der clrSysMmbId-Eigenschaft ab.
*
* @return
* possible object is
* {@link ClearingSystemMemberIdentification2 }
*
*/
public ClearingSystemMemberIdentification2 getClrSysMmbId() {
return clrSysMmbId;
}
/**
* Legt den Wert der clrSysMmbId-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link ClearingSystemMemberIdentification2 }
*
*/
public void setClrSysMmbId(ClearingSystemMemberIdentification2 value) {
this.clrSysMmbId = value;
}
/**
* Ruft den Wert der nm-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNm() {
return nm;
}
/**
* Legt den Wert der nm-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNm(String value) {
this.nm = value;
}
/**
* Ruft den Wert der pstlAdr-Eigenschaft ab.
*
* @return
* possible object is
* {@link PostalAddress6 }
*
*/
public PostalAddress6 getPstlAdr() {
return pstlAdr;
}
/**
* Legt den Wert der pstlAdr-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link PostalAddress6 }
*
*/
public void setPstlAdr(PostalAddress6 value) {
this.pstlAdr = value;
}
/**
* Ruft den Wert der othr-Eigenschaft ab.
*
* @return
* possible object is
* {@link GenericFinancialIdentification1 }
*
*/
public GenericFinancialIdentification1 getOthr() {
return othr;
}
/**
* Legt den Wert der othr-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link GenericFinancialIdentification1 }
*
*/
public void setOthr(GenericFinancialIdentification1 value) {
this.othr = value;
}
}