com.prowidesoftware.swift.model.mx.dic.UnderlyingTransaction4 Maven / Gradle / Ivy
Show all versions of pw-iso20022 Show documentation
package com.prowidesoftware.swift.model.mx.dic;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.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;
/**
* Identifies the underlying (group of) transaction(s) to which the resolution of investigation applies.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "UnderlyingTransaction4", propOrder = {
"orgnlGrpInfAndSts",
"orgnlPmtInfAndSts",
"txInfAndSts"
})
public class UnderlyingTransaction4 {
@XmlElement(name = "OrgnlGrpInfAndSts")
protected OriginalGroupHeader5 orgnlGrpInfAndSts;
@XmlElement(name = "OrgnlPmtInfAndSts")
protected List orgnlPmtInfAndSts;
@XmlElement(name = "TxInfAndSts")
protected List txInfAndSts;
/**
* Gets the value of the orgnlGrpInfAndSts property.
*
* @return
* possible object is
* {@link OriginalGroupHeader5 }
*
*/
public OriginalGroupHeader5 getOrgnlGrpInfAndSts() {
return orgnlGrpInfAndSts;
}
/**
* Sets the value of the orgnlGrpInfAndSts property.
*
* @param value
* allowed object is
* {@link OriginalGroupHeader5 }
*
*/
public UnderlyingTransaction4 setOrgnlGrpInfAndSts(OriginalGroupHeader5 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 Jakarta XML Binding object.
* This is why there is not a {@code 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 OriginalPaymentInstruction3 }
*
*
* @return
* The value of the orgnlPmtInfAndSts property.
*/
public List getOrgnlPmtInfAndSts() {
if (orgnlPmtInfAndSts == null) {
orgnlPmtInfAndSts = new ArrayList<>();
}
return this.orgnlPmtInfAndSts;
}
/**
* Gets the value of the txInfAndSts 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 txInfAndSts property.
*
*
* For example, to add a new item, do as follows:
*
* getTxInfAndSts().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link PaymentTransaction40 }
*
*
* @return
* The value of the txInfAndSts property.
*/
public List getTxInfAndSts() {
if (txInfAndSts == null) {
txInfAndSts = new ArrayList<>();
}
return this.txInfAndSts;
}
@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 UnderlyingTransaction4 addOrgnlPmtInfAndSts(OriginalPaymentInstruction3 orgnlPmtInfAndSts) {
getOrgnlPmtInfAndSts().add(orgnlPmtInfAndSts);
return this;
}
/**
* Adds a new item to the txInfAndSts list.
* @see #getTxInfAndSts()
*
*/
public UnderlyingTransaction4 addTxInfAndSts(PaymentTransaction40 txInfAndSts) {
getTxInfAndSts().add(txInfAndSts);
return this;
}
}