
com.prowidesoftware.swift.model.mx.dic.CommunicationAddress8 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;
/**
* Communication device number or electronic address used for communication.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CommunicationAddress8", propOrder = {
"pstlAdr",
"phneNb",
"faxNb",
"emailAdr"
})
public class CommunicationAddress8 {
@XmlElement(name = "PstlAdr", required = true)
protected LongPostalAddress1Choice pstlAdr;
@XmlElement(name = "PhneNb", required = true)
protected String phneNb;
@XmlElement(name = "FaxNb")
protected String faxNb;
@XmlElement(name = "EmailAdr")
protected String emailAdr;
/**
* Gets the value of the pstlAdr property.
*
* @return
* possible object is
* {@link LongPostalAddress1Choice }
*
*/
public LongPostalAddress1Choice getPstlAdr() {
return pstlAdr;
}
/**
* Sets the value of the pstlAdr property.
*
* @param value
* allowed object is
* {@link LongPostalAddress1Choice }
*
*/
public CommunicationAddress8 setPstlAdr(LongPostalAddress1Choice value) {
this.pstlAdr = value;
return this;
}
/**
* Gets the value of the phneNb property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPhneNb() {
return phneNb;
}
/**
* Sets the value of the phneNb property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public CommunicationAddress8 setPhneNb(String value) {
this.phneNb = value;
return this;
}
/**
* Gets the value of the faxNb property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFaxNb() {
return faxNb;
}
/**
* Sets the value of the faxNb property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public CommunicationAddress8 setFaxNb(String value) {
this.faxNb = value;
return this;
}
/**
* Gets the value of the emailAdr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEmailAdr() {
return emailAdr;
}
/**
* Sets the value of the emailAdr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public CommunicationAddress8 setEmailAdr(String value) {
this.emailAdr = 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