
com.prowidesoftware.swift.model.mx.dic.CustomerPaymentStatusReport003V03SEPADFU Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
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.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;
/**
* The formats described are formats for payment transactions (DTAUS, pain.00x subsets of the Deutsche Kreditwirtschaft (DK) for SEPA and for submission of same-day urgent credit transfer as well as DTAZV), for downloading customer statement messages (MT940/942, camt.05x) and in-formation pertaining to the securities business as well as formats for the documentary business (documentary credits and guarantees).
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CustomerPaymentStatusReport003V03_SEPA_DFU", propOrder = {
"grpHdr",
"orgnlGrpInfAndSts",
"orgnlPmtInfAndSts"
})
public class CustomerPaymentStatusReport003V03SEPADFU {
@XmlElement(name = "GrpHdr", required = true)
protected GroupHeaderSEPADFU1 grpHdr;
@XmlElement(name = "OrgnlGrpInfAndSts", required = true)
protected OriginalGroupInformationSEPADFU1 orgnlGrpInfAndSts;
@XmlElement(name = "OrgnlPmtInfAndSts")
protected List orgnlPmtInfAndSts;
/**
* Gets the value of the grpHdr property.
*
* @return
* possible object is
* {@link GroupHeaderSEPADFU1 }
*
*/
public GroupHeaderSEPADFU1 getGrpHdr() {
return grpHdr;
}
/**
* Sets the value of the grpHdr property.
*
* @param value
* allowed object is
* {@link GroupHeaderSEPADFU1 }
*
*/
public CustomerPaymentStatusReport003V03SEPADFU setGrpHdr(GroupHeaderSEPADFU1 value) {
this.grpHdr = value;
return this;
}
/**
* Gets the value of the orgnlGrpInfAndSts property.
*
* @return
* possible object is
* {@link OriginalGroupInformationSEPADFU1 }
*
*/
public OriginalGroupInformationSEPADFU1 getOrgnlGrpInfAndSts() {
return orgnlGrpInfAndSts;
}
/**
* Sets the value of the orgnlGrpInfAndSts property.
*
* @param value
* allowed object is
* {@link OriginalGroupInformationSEPADFU1 }
*
*/
public CustomerPaymentStatusReport003V03SEPADFU setOrgnlGrpInfAndSts(OriginalGroupInformationSEPADFU1 value) {
this.orgnlGrpInfAndSts = value;
return this;
}
/**
* Gets the value of the orgnlPmtInfAndSts 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 orgnlPmtInfAndSts property.
*
*
* For example, to add a new item, do as follows:
*
* getOrgnlPmtInfAndSts().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link OriginalPaymentInformationSEPADFU1 }
*
*
*/
public List getOrgnlPmtInfAndSts() {
if (orgnlPmtInfAndSts == null) {
orgnlPmtInfAndSts = new ArrayList();
}
return this.orgnlPmtInfAndSts;
}
@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 orgnlPmtInfAndSts list.
* @see #getOrgnlPmtInfAndSts()
*
*/
public CustomerPaymentStatusReport003V03SEPADFU addOrgnlPmtInfAndSts(OriginalPaymentInformationSEPADFU1 orgnlPmtInfAndSts) {
getOrgnlPmtInfAndSts().add(orgnlPmtInfAndSts);
return this;
}
}