package org.kapott.hbci.sepa.jaxb.pain_008_001_01; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for OrganisationIdentification2 complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="OrganisationIdentification2"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="BIC" type="{urn:sepade:xsd:pain.008.001.01}BICIdentifier" minOccurs="0"/> * <element name="IBEI" type="{urn:sepade:xsd:pain.008.001.01}IBEIIdentifier" minOccurs="0"/> * <element name="BEI" type="{urn:sepade:xsd:pain.008.001.01}BEIIdentifier" minOccurs="0"/> * <element name="EANGLN" type="{urn:sepade:xsd:pain.008.001.01}EANGLNIdentifier" minOccurs="0"/> * <element name="USCHU" type="{urn:sepade:xsd:pain.008.001.01}CHIPSUniversalIdentifier" minOccurs="0"/> * <element name="DUNS" type="{urn:sepade:xsd:pain.008.001.01}DunsIdentifier" minOccurs="0"/> * <element name="BkPtyId" type="{urn:sepade:xsd:pain.008.001.01}Max35Text" minOccurs="0"/> * <element name="TaxIdNb" type="{urn:sepade:xsd:pain.008.001.01}Max35Text" minOccurs="0"/> * <element name="PrtryId" type="{urn:sepade:xsd:pain.008.001.01}GenericIdentification3" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "OrganisationIdentification2", namespace = "urn:sepade:xsd:pain.008.001.01", propOrder = { "bic", "ibei", "bei", "eangln", "uschu", "duns", "bkPtyId", "taxIdNb", "prtryId" }) public class OrganisationIdentification2 { @XmlElement(name = "BIC", namespace = "urn:sepade:xsd:pain.008.001.01") protected String bic; @XmlElement(name = "IBEI", namespace = "urn:sepade:xsd:pain.008.001.01") protected String ibei; @XmlElement(name = "BEI", namespace = "urn:sepade:xsd:pain.008.001.01") protected String bei; @XmlElement(name = "EANGLN", namespace = "urn:sepade:xsd:pain.008.001.01") protected String eangln; @XmlElement(name = "USCHU", namespace = "urn:sepade:xsd:pain.008.001.01") protected String uschu; @XmlElement(name = "DUNS", namespace = "urn:sepade:xsd:pain.008.001.01") protected String duns; @XmlElement(name = "BkPtyId", namespace = "urn:sepade:xsd:pain.008.001.01") protected String bkPtyId; @XmlElement(name = "TaxIdNb", namespace = "urn:sepade:xsd:pain.008.001.01") protected String taxIdNb; @XmlElement(name = "PrtryId", namespace = "urn:sepade:xsd:pain.008.001.01") protected GenericIdentification3 prtryId; /** * Gets the value of the bic property. * * @return * possible object is * {@link String } * */ public String getBIC() { return bic; } /** * Sets the value of the bic property. * * @param value * allowed object is * {@link String } * */ public void setBIC(String value) { this.bic = value; } /** * Gets the value of the ibei property. * * @return * possible object is * {@link String } * */ public String getIBEI() { return ibei; } /** * Sets the value of the ibei property. * * @param value * allowed object is * {@link String } * */ public void setIBEI(String value) { this.ibei = value; } /** * Gets the value of the bei property. * * @return * possible object is * {@link String } * */ public String getBEI() { return bei; } /** * Sets the value of the bei property. * * @param value * allowed object is * {@link String } * */ public void setBEI(String value) { this.bei = value; } /** * Gets the value of the eangln property. * * @return * possible object is * {@link String } * */ public String getEANGLN() { return eangln; } /** * Sets the value of the eangln property. * * @param value * allowed object is * {@link String } * */ public void setEANGLN(String value) { this.eangln = value; } /** * Gets the value of the uschu property. * * @return * possible object is * {@link String } * */ public String getUSCHU() { return uschu; } /** * Sets the value of the uschu property. * * @param value * allowed object is * {@link String } * */ public void setUSCHU(String value) { this.uschu = value; } /** * Gets the value of the duns property. * * @return * possible object is * {@link String } * */ public String getDUNS() { return duns; } /** * Sets the value of the duns property. * * @param value * allowed object is * {@link String } * */ public void setDUNS(String value) { this.duns = value; } /** * Gets the value of the bkPtyId property. * * @return * possible object is * {@link String } * */ public String getBkPtyId() { return bkPtyId; } /** * Sets the value of the bkPtyId property. * * @param value * allowed object is * {@link String } * */ public void setBkPtyId(String value) { this.bkPtyId = value; } /** * Gets the value of the taxIdNb property. * * @return * possible object is * {@link String } * */ public String getTaxIdNb() { return taxIdNb; } /** * Sets the value of the taxIdNb property. * * @param value * allowed object is * {@link String } * */ public void setTaxIdNb(String value) { this.taxIdNb = value; } /** * Gets the value of the prtryId property. * * @return * possible object is * {@link GenericIdentification3 } * */ public GenericIdentification3 getPrtryId() { return prtryId; } /** * Sets the value of the prtryId property. * * @param value * allowed object is * {@link GenericIdentification3 } * */ public void setPrtryId(GenericIdentification3 value) { this.prtryId = value; } }