com.prowidesoftware.swift.model.mx.dic.PostalAddress5 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pw-iso20022 Show documentation
Show all versions of pw-iso20022 Show documentation
Prowide Library for ISO 20022 messages
package com.prowidesoftware.swift.model.mx.dic;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
/**
* Address of a party expressed in a formal structure, usually according to the country's postal services specifications.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PostalAddress5", propOrder = {
"strtNm",
"pstCdId",
"twnNm",
"ctrySubDvsn",
"ctry"
})
public class PostalAddress5 {
@XmlElement(name = "StrtNm")
protected String strtNm;
@XmlElement(name = "PstCdId")
protected String pstCdId;
@XmlElement(name = "TwnNm")
protected String twnNm;
@XmlElement(name = "CtrySubDvsn")
protected String ctrySubDvsn;
@XmlElement(name = "Ctry", required = true)
protected String ctry;
/**
* 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 PostalAddress5 setStrtNm(String value) {
this.strtNm = value;
return this;
}
/**
* Gets the value of the pstCdId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPstCdId() {
return pstCdId;
}
/**
* Sets the value of the pstCdId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public PostalAddress5 setPstCdId(String value) {
this.pstCdId = value;
return this;
}
/**
* 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 PostalAddress5 setTwnNm(String value) {
this.twnNm = value;
return this;
}
/**
* 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 PostalAddress5 setCtrySubDvsn(String value) {
this.ctrySubDvsn = value;
return this;
}
/**
* 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 PostalAddress5 setCtry(String value) {
this.ctry = value;
return this;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this, ToStringStyle.MULTI_LINE_STYLE);
}
@Override
public boolean equals(Object that) {
return EqualsBuilder.reflectionEquals(this, that);
}
@Override
public int hashCode() {
return HashCodeBuilder.reflectionHashCode(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy