All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.adorsys.psd2.iso20022.camt052.PostalAddress6 Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2018.03.27 at 07:28:42 AM CEST 
//


package org.adorsys.psd2.iso20022.camt052;

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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for PostalAddress6 complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="PostalAddress6">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="AdrTp" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}AddressType2Code" minOccurs="0"/>
 *         <element name="Dept" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}Max70Text" minOccurs="0"/>
 *         <element name="SubDept" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}Max70Text" minOccurs="0"/>
 *         <element name="StrtNm" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}Max70Text" minOccurs="0"/>
 *         <element name="BldgNb" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}Max16Text" minOccurs="0"/>
 *         <element name="PstCd" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}Max16Text" minOccurs="0"/>
 *         <element name="TwnNm" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}Max35Text" minOccurs="0"/>
 *         <element name="CtrySubDvsn" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}Max35Text" minOccurs="0"/>
 *         <element name="Ctry" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}CountryCode" minOccurs="0"/>
 *         <element name="AdrLine" type="{urn:iso:std:iso:20022:tech:xsd:camt.052.001.06}Max70Text" maxOccurs="7" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PostalAddress6", propOrder = { "adrTp", "dept", "subDept", "strtNm", "bldgNb", "pstCd", "twnNm", "ctrySubDvsn", "ctry", "adrLine" }) public class PostalAddress6 { @XmlElement(name = "AdrTp") @XmlSchemaType(name = "string") protected AddressType2Code adrTp; @XmlElement(name = "Dept") protected String dept; @XmlElement(name = "SubDept") protected String subDept; @XmlElement(name = "StrtNm") protected String strtNm; @XmlElement(name = "BldgNb") protected String bldgNb; @XmlElement(name = "PstCd") protected String pstCd; @XmlElement(name = "TwnNm") protected String twnNm; @XmlElement(name = "CtrySubDvsn") protected String ctrySubDvsn; @XmlElement(name = "Ctry") protected String ctry; @XmlElement(name = "AdrLine") protected List adrLine; /** * Gets the value of the adrTp property. * * @return * possible object is * {@link AddressType2Code } * */ public AddressType2Code getAdrTp() { return adrTp; } /** * Sets the value of the adrTp property. * * @param value * allowed object is * {@link AddressType2Code } * */ public void setAdrTp(AddressType2Code value) { this.adrTp = value; } /** * Gets the value of the dept property. * * @return * possible object is * {@link String } * */ public String getDept() { return dept; } /** * Sets the value of the dept property. * * @param value * allowed object is * {@link String } * */ public void setDept(String value) { this.dept = value; } /** * Gets the value of the subDept property. * * @return * possible object is * {@link String } * */ public String getSubDept() { return subDept; } /** * Sets the value of the subDept property. * * @param value * allowed object is * {@link String } * */ public void setSubDept(String value) { this.subDept = value; } /** * Gets the value of the strtNm property. * * @return * possible object is * {@link String } * */ public String getStrtNm() { return strtNm; } /** * Sets the value of the strtNm property. * * @param value * allowed object is * {@link String } * */ public void setStrtNm(String value) { this.strtNm = value; } /** * Gets the value of the bldgNb property. * * @return * possible object is * {@link String } * */ public String getBldgNb() { return bldgNb; } /** * Sets the value of the bldgNb property. * * @param value * allowed object is * {@link String } * */ public void setBldgNb(String value) { this.bldgNb = value; } /** * Gets the value of the pstCd property. * * @return * possible object is * {@link String } * */ public String getPstCd() { return pstCd; } /** * Sets the value of the pstCd property. * * @param value * allowed object is * {@link String } * */ public void setPstCd(String value) { this.pstCd = value; } /** * Gets the value of the twnNm property. * * @return * possible object is * {@link String } * */ public String getTwnNm() { return twnNm; } /** * Sets the value of the twnNm property. * * @param value * allowed object is * {@link String } * */ public void setTwnNm(String value) { this.twnNm = value; } /** * Gets the value of the ctrySubDvsn property. * * @return * possible object is * {@link String } * */ public String getCtrySubDvsn() { return ctrySubDvsn; } /** * Sets the value of the ctrySubDvsn property. * * @param value * allowed object is * {@link String } * */ public void setCtrySubDvsn(String value) { this.ctrySubDvsn = value; } /** * 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; } /** * Gets the value of the adrLine property. * *

* 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 set method for the adrLine property. * *

* For example, to add a new item, do as follows: *

     *    getAdrLine().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getAdrLine() { if (adrLine == null) { adrLine = new ArrayList(); } return this.adrLine; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy