
com.prowidesoftware.swift.model.mx.dic.FinancialInstitutionDirectDebitV01 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 FinancialInstitutionDirectDebit message is sent by an exchange or clearing house, or a financial institution, directly or through another agent, to the DebtorAgent. It is used to instruct the DebtorAgent to move funds from one or more debtor(s) account(s) to one or more creditor(s), where both debtor and creditor are financial institutions.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FinancialInstitutionDirectDebitV01", propOrder = {
"grpHdr",
"cdtInstr",
"splmtryData"
})
public class FinancialInstitutionDirectDebitV01 {
@XmlElement(name = "GrpHdr", required = true)
protected GroupHeader63 grpHdr;
@XmlElement(name = "CdtInstr", required = true)
protected List cdtInstr;
@XmlElement(name = "SplmtryData")
protected List splmtryData;
/**
* Gets the value of the grpHdr property.
*
* @return
* possible object is
* {@link GroupHeader63 }
*
*/
public GroupHeader63 getGrpHdr() {
return grpHdr;
}
/**
* Sets the value of the grpHdr property.
*
* @param value
* allowed object is
* {@link GroupHeader63 }
*
*/
public FinancialInstitutionDirectDebitV01 setGrpHdr(GroupHeader63 value) {
this.grpHdr = value;
return this;
}
/**
* Gets the value of the cdtInstr 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 cdtInstr property.
*
*
* For example, to add a new item, do as follows:
*
* getCdtInstr().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link CreditTransferTransaction9 }
*
*
*/
public List getCdtInstr() {
if (cdtInstr == null) {
cdtInstr = new ArrayList();
}
return this.cdtInstr;
}
/**
* Gets the value of the splmtryData 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 splmtryData property.
*
*
* For example, to add a new item, do as follows:
*
* getSplmtryData().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SupplementaryData1 }
*
*
*/
public List getSplmtryData() {
if (splmtryData == null) {
splmtryData = new ArrayList();
}
return this.splmtryData;
}
@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 cdtInstr list.
* @see #getCdtInstr()
*
*/
public FinancialInstitutionDirectDebitV01 addCdtInstr(CreditTransferTransaction9 cdtInstr) {
getCdtInstr().add(cdtInstr);
return this;
}
/**
* Adds a new item to the splmtryData list.
* @see #getSplmtryData()
*
*/
public FinancialInstitutionDirectDebitV01 addSplmtryData(SupplementaryData1 splmtryData) {
getSplmtryData().add(splmtryData);
return this;
}
}