
com.prowidesoftware.swift.model.mx.dic.CommunicationAddress5 Maven / Gradle / Ivy
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 information.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CommunicationAddress5", propOrder = {
"pstlAdr",
"email",
"urlAdr",
"phne",
"cstmrSvc",
"addtlCtctInf"
})
public class CommunicationAddress5 {
@XmlElement(name = "PstlAdr")
protected PostalAddress18 pstlAdr;
@XmlElement(name = "Email")
protected String email;
@XmlElement(name = "URLAdr")
protected String urlAdr;
@XmlElement(name = "Phne")
protected String phne;
@XmlElement(name = "CstmrSvc")
protected String cstmrSvc;
@XmlElement(name = "AddtlCtctInf")
protected String addtlCtctInf;
/**
* Gets the value of the pstlAdr property.
*
* @return
* possible object is
* {@link PostalAddress18 }
*
*/
public PostalAddress18 getPstlAdr() {
return pstlAdr;
}
/**
* Sets the value of the pstlAdr property.
*
* @param value
* allowed object is
* {@link PostalAddress18 }
*
*/
public CommunicationAddress5 setPstlAdr(PostalAddress18 value) {
this.pstlAdr = value;
return this;
}
/**
* Gets the value of the email property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEmail() {
return email;
}
/**
* Sets the value of the email property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public CommunicationAddress5 setEmail(String value) {
this.email = value;
return this;
}
/**
* Gets the value of the urlAdr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getURLAdr() {
return urlAdr;
}
/**
* Sets the value of the urlAdr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public CommunicationAddress5 setURLAdr(String value) {
this.urlAdr = value;
return this;
}
/**
* Gets the value of the phne property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPhne() {
return phne;
}
/**
* Sets the value of the phne property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public CommunicationAddress5 setPhne(String value) {
this.phne = value;
return this;
}
/**
* Gets the value of the cstmrSvc property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCstmrSvc() {
return cstmrSvc;
}
/**
* Sets the value of the cstmrSvc property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public CommunicationAddress5 setCstmrSvc(String value) {
this.cstmrSvc = value;
return this;
}
/**
* Gets the value of the addtlCtctInf property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAddtlCtctInf() {
return addtlCtctInf;
}
/**
* Sets the value of the addtlCtctInf property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public CommunicationAddress5 setAddtlCtctInf(String value) {
this.addtlCtctInf = 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