package org.kapott.hbci.sepa.jaxb.pain_001_002_03; 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 AccountIdentificationSEPA complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="AccountIdentificationSEPA"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="IBAN" type="{urn:iso:std:iso:20022:tech:xsd:pain.001.002.03}IBAN2007Identifier"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AccountIdentificationSEPA", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.001.002.03", propOrder = { "iban" }) public class AccountIdentificationSEPA { @XmlElement(name = "IBAN", namespace = "urn:iso:std:iso:20022:tech:xsd:pain.001.002.03", required = true) protected String iban; /** * Gets the value of the iban property. * * @return * possible object is * {@link String } * */ public String getIBAN() { return iban; } /** * Sets the value of the iban property. * * @param value * allowed object is * {@link String } * */ public void setIBAN(String value) { this.iban = value; } }