com.prowidesoftware.swift.model.mx.dic.Customer3 Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import java.time.LocalDate;
import java.util.ArrayList;
import java.util.List;
import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
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;
/**
* Identifies the customer in a transfer of money.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Customer3", propOrder = {
"cstmrId",
"nm",
"adr",
"crdntls",
"addtlInf",
"dtOfBirth"
})
public class Customer3 {
@XmlElement(name = "CstmrId")
protected String cstmrId;
@XmlElement(name = "Nm")
protected String nm;
@XmlElement(name = "Adr")
protected Address1 adr;
@XmlElement(name = "Crdntls")
protected List crdntls;
@XmlElement(name = "AddtlInf")
protected String addtlInf;
@XmlElement(name = "DtOfBirth", type = String.class)
@XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected LocalDate dtOfBirth;
/**
* Gets the value of the cstmrId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCstmrId() {
return cstmrId;
}
/**
* Sets the value of the cstmrId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Customer3 setCstmrId(String value) {
this.cstmrId = value;
return this;
}
/**
* Gets the value of the nm property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNm() {
return nm;
}
/**
* Sets the value of the nm property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Customer3 setNm(String value) {
this.nm = value;
return this;
}
/**
* Gets the value of the adr property.
*
* @return
* possible object is
* {@link Address1 }
*
*/
public Address1 getAdr() {
return adr;
}
/**
* Sets the value of the adr property.
*
* @param value
* allowed object is
* {@link Address1 }
*
*/
public Customer3 setAdr(Address1 value) {
this.adr = value;
return this;
}
/**
* Gets the value of the crdntls 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 Jakarta XML Binding object.
* This is why there is not a {@code set} method for the crdntls property.
*
*
* For example, to add a new item, do as follows:
*
* getCrdntls().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Credentials1 }
*
*
* @return
* The value of the crdntls property.
*/
public List getCrdntls() {
if (crdntls == null) {
crdntls = new ArrayList<>();
}
return this.crdntls;
}
/**
* Gets the value of the addtlInf property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAddtlInf() {
return addtlInf;
}
/**
* Sets the value of the addtlInf property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Customer3 setAddtlInf(String value) {
this.addtlInf = value;
return this;
}
/**
* Gets the value of the dtOfBirth property.
*
* @return
* possible object is
* {@link String }
*
*/
public LocalDate getDtOfBirth() {
return dtOfBirth;
}
/**
* Sets the value of the dtOfBirth property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public Customer3 setDtOfBirth(LocalDate value) {
this.dtOfBirth = 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);
}
/**
* Adds a new item to the crdntls list.
* @see #getCrdntls()
*
*/
public Customer3 addCrdntls(Credentials1 crdntls) {
getCrdntls().add(crdntls);
return this;
}
}