package org.kapott.hbci.sepa.jaxb.pain_008_001_01; import java.util.ArrayList; import java.util.List; 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 PostalAddress5 complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="PostalAddress5"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="AdrLine" type="{urn:sepade:xsd:pain.008.001.01}Max70Text" maxOccurs="2"/> * <element name="Ctry" type="{urn:sepade:xsd:pain.008.001.01}CountryCode"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PostalAddress5", namespace = "urn:sepade:xsd:pain.008.001.01", propOrder = { "adrLine", "ctry" }) public class PostalAddress5 { @XmlElement(name = "AdrLine", namespace = "urn:sepade:xsd:pain.008.001.01", required = true) protected List<String> adrLine; @XmlElement(name = "Ctry", namespace = "urn:sepade:xsd:pain.008.001.01", required = true) protected String ctry; /** * Gets the value of the adrLine property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the adrLine property. * * <p> * For example, to add a new item, do as follows: * <pre> * getAdrLine().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link String } * * */ public List<String> getAdrLine() { if (adrLine == null) { adrLine = new ArrayList<String>(); } return this.adrLine; } /** * Gets the value of the ctry property. * * @return * possible object is * {@link String } * */ public String getCtry() { return ctry; } /** * Sets the value of the ctry property. * * @param value * allowed object is * {@link String } * */ public void setCtry(String value) { this.ctry = value; } }