
com.prowidesoftware.swift.model.mx.dic.Tsmt00600102 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 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;
/**
* Scope
* The AmendmentAcceptanceNotification message is sent by the matching application to the requester of an amendment.
* This message is used to notify the acceptance of an amendment request.
* Usage
* The AmendmentAcceptanceNotification message can be sent by the matching application to pass on information about the acceptance of an amendment request that it has obtained through the receipt of an AmendmentAcceptance message.
* In order to pass on information about the rejection of an amendment request the matching application sends an AmendmentRejectionNotification message.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tsmt.006.001.02", propOrder = {
"ntfctnId",
"txId",
"tsuBaselnId",
"txSts",
"usrTxRef",
"dltaRptRef",
"accptdAmdmntNb",
"reqForActn"
})
public class Tsmt00600102 {
@XmlElement(name = "NtfctnId", required = true)
protected MessageIdentification1 ntfctnId;
@XmlElement(name = "TxId", required = true)
protected SimpleIdentificationInformation txId;
@XmlElement(name = "TSUBaselnId", required = true)
protected DocumentIdentification3 tsuBaselnId;
@XmlElement(name = "TxSts", required = true)
protected TransactionStatus1 txSts;
@XmlElement(name = "UsrTxRef", required = true)
protected List usrTxRef;
@XmlElement(name = "DltaRptRef", required = true)
protected MessageIdentification1 dltaRptRef;
@XmlElement(name = "AccptdAmdmntNb", required = true)
protected Count1 accptdAmdmntNb;
@XmlElement(name = "ReqForActn")
protected PendingActivity1 reqForActn;
/**
* Gets the value of the ntfctnId property.
*
* @return
* possible object is
* {@link MessageIdentification1 }
*
*/
public MessageIdentification1 getNtfctnId() {
return ntfctnId;
}
/**
* Sets the value of the ntfctnId property.
*
* @param value
* allowed object is
* {@link MessageIdentification1 }
*
*/
public Tsmt00600102 setNtfctnId(MessageIdentification1 value) {
this.ntfctnId = value;
return this;
}
/**
* Gets the value of the txId property.
*
* @return
* possible object is
* {@link SimpleIdentificationInformation }
*
*/
public SimpleIdentificationInformation getTxId() {
return txId;
}
/**
* Sets the value of the txId property.
*
* @param value
* allowed object is
* {@link SimpleIdentificationInformation }
*
*/
public Tsmt00600102 setTxId(SimpleIdentificationInformation value) {
this.txId = value;
return this;
}
/**
* Gets the value of the tsuBaselnId property.
*
* @return
* possible object is
* {@link DocumentIdentification3 }
*
*/
public DocumentIdentification3 getTSUBaselnId() {
return tsuBaselnId;
}
/**
* Sets the value of the tsuBaselnId property.
*
* @param value
* allowed object is
* {@link DocumentIdentification3 }
*
*/
public Tsmt00600102 setTSUBaselnId(DocumentIdentification3 value) {
this.tsuBaselnId = value;
return this;
}
/**
* Gets the value of the txSts property.
*
* @return
* possible object is
* {@link TransactionStatus1 }
*
*/
public TransactionStatus1 getTxSts() {
return txSts;
}
/**
* Sets the value of the txSts property.
*
* @param value
* allowed object is
* {@link TransactionStatus1 }
*
*/
public Tsmt00600102 setTxSts(TransactionStatus1 value) {
this.txSts = value;
return this;
}
/**
* Gets the value of the usrTxRef 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 usrTxRef property.
*
*
* For example, to add a new item, do as follows:
*
* getUsrTxRef().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link DocumentIdentification5 }
*
*
*/
public List getUsrTxRef() {
if (usrTxRef == null) {
usrTxRef = new ArrayList();
}
return this.usrTxRef;
}
/**
* Gets the value of the dltaRptRef property.
*
* @return
* possible object is
* {@link MessageIdentification1 }
*
*/
public MessageIdentification1 getDltaRptRef() {
return dltaRptRef;
}
/**
* Sets the value of the dltaRptRef property.
*
* @param value
* allowed object is
* {@link MessageIdentification1 }
*
*/
public Tsmt00600102 setDltaRptRef(MessageIdentification1 value) {
this.dltaRptRef = value;
return this;
}
/**
* Gets the value of the accptdAmdmntNb property.
*
* @return
* possible object is
* {@link Count1 }
*
*/
public Count1 getAccptdAmdmntNb() {
return accptdAmdmntNb;
}
/**
* Sets the value of the accptdAmdmntNb property.
*
* @param value
* allowed object is
* {@link Count1 }
*
*/
public Tsmt00600102 setAccptdAmdmntNb(Count1 value) {
this.accptdAmdmntNb = value;
return this;
}
/**
* Gets the value of the reqForActn property.
*
* @return
* possible object is
* {@link PendingActivity1 }
*
*/
public PendingActivity1 getReqForActn() {
return reqForActn;
}
/**
* Sets the value of the reqForActn property.
*
* @param value
* allowed object is
* {@link PendingActivity1 }
*
*/
public Tsmt00600102 setReqForActn(PendingActivity1 value) {
this.reqForActn = 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 usrTxRef list.
* @see #getUsrTxRef()
*
*/
public Tsmt00600102 addUsrTxRef(DocumentIdentification5 usrTxRef) {
getUsrTxRef().add(usrTxRef);
return this;
}
}