com.prowidesoftware.swift.model.mx.dic.SecuritiesSettlementTransactionModificationRequestStatusAdviceV05 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;
/**
* Scope
* An account servicer sends a SecuritiesSettlementTransactionModificationRequestStatusAdvice to an account owner to advise the status of a SecuritiesSettlementModificationRequest message previously sent by the account owner.
* The account servicer may be:
* - a central securities depository or another settlement market infrastructure managing securities settlement transactions on behalf of their participants
* - an custodian acting as an accounting and/or settlement agent.
*
* Usage
* The message may also be used to:
* - re-send a message sent by the account owner to the account servicer,
* - provide a third party with a copy of a message being sent by the account owner for information,
* - re-send to a third party a copy of a message being sent by the account owner for information
* using the relevant elements in the Business Application Header.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SecuritiesSettlementTransactionModificationRequestStatusAdviceV05", propOrder = {
"modReqRef",
"acctOwnr",
"sfkpgAcct",
"txId",
"modPrcgSts",
"txDtls",
"splmtryData"
})
public class SecuritiesSettlementTransactionModificationRequestStatusAdviceV05 {
@XmlElement(name = "ModReqRef", required = true)
protected Identification14 modReqRef;
@XmlElement(name = "AcctOwnr")
protected PartyIdentification144 acctOwnr;
@XmlElement(name = "SfkpgAcct", required = true)
protected SecuritiesAccount19 sfkpgAcct;
@XmlElement(name = "TxId")
protected TransactionIdentifications33 txId;
@XmlElement(name = "ModPrcgSts", required = true)
protected ModificationProcessingStatus7Choice modPrcgSts;
@XmlElement(name = "TxDtls")
protected TransactionDetails137 txDtls;
@XmlElement(name = "SplmtryData")
protected List splmtryData;
/**
* Gets the value of the modReqRef property.
*
* @return
* possible object is
* {@link Identification14 }
*
*/
public Identification14 getModReqRef() {
return modReqRef;
}
/**
* Sets the value of the modReqRef property.
*
* @param value
* allowed object is
* {@link Identification14 }
*
*/
public SecuritiesSettlementTransactionModificationRequestStatusAdviceV05 setModReqRef(Identification14 value) {
this.modReqRef = value;
return this;
}
/**
* Gets the value of the acctOwnr property.
*
* @return
* possible object is
* {@link PartyIdentification144 }
*
*/
public PartyIdentification144 getAcctOwnr() {
return acctOwnr;
}
/**
* Sets the value of the acctOwnr property.
*
* @param value
* allowed object is
* {@link PartyIdentification144 }
*
*/
public SecuritiesSettlementTransactionModificationRequestStatusAdviceV05 setAcctOwnr(PartyIdentification144 value) {
this.acctOwnr = value;
return this;
}
/**
* Gets the value of the sfkpgAcct property.
*
* @return
* possible object is
* {@link SecuritiesAccount19 }
*
*/
public SecuritiesAccount19 getSfkpgAcct() {
return sfkpgAcct;
}
/**
* Sets the value of the sfkpgAcct property.
*
* @param value
* allowed object is
* {@link SecuritiesAccount19 }
*
*/
public SecuritiesSettlementTransactionModificationRequestStatusAdviceV05 setSfkpgAcct(SecuritiesAccount19 value) {
this.sfkpgAcct = value;
return this;
}
/**
* Gets the value of the txId property.
*
* @return
* possible object is
* {@link TransactionIdentifications33 }
*
*/
public TransactionIdentifications33 getTxId() {
return txId;
}
/**
* Sets the value of the txId property.
*
* @param value
* allowed object is
* {@link TransactionIdentifications33 }
*
*/
public SecuritiesSettlementTransactionModificationRequestStatusAdviceV05 setTxId(TransactionIdentifications33 value) {
this.txId = value;
return this;
}
/**
* Gets the value of the modPrcgSts property.
*
* @return
* possible object is
* {@link ModificationProcessingStatus7Choice }
*
*/
public ModificationProcessingStatus7Choice getModPrcgSts() {
return modPrcgSts;
}
/**
* Sets the value of the modPrcgSts property.
*
* @param value
* allowed object is
* {@link ModificationProcessingStatus7Choice }
*
*/
public SecuritiesSettlementTransactionModificationRequestStatusAdviceV05 setModPrcgSts(ModificationProcessingStatus7Choice value) {
this.modPrcgSts = value;
return this;
}
/**
* Gets the value of the txDtls property.
*
* @return
* possible object is
* {@link TransactionDetails137 }
*
*/
public TransactionDetails137 getTxDtls() {
return txDtls;
}
/**
* Sets the value of the txDtls property.
*
* @param value
* allowed object is
* {@link TransactionDetails137 }
*
*/
public SecuritiesSettlementTransactionModificationRequestStatusAdviceV05 setTxDtls(TransactionDetails137 value) {
this.txDtls = value;
return this;
}
/**
* 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 Jakarta XML Binding object.
* This is why there is not a {@code 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 }
*
*
* @return
* The value of the splmtryData property.
*/
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 splmtryData list.
* @see #getSplmtryData()
*
*/
public SecuritiesSettlementTransactionModificationRequestStatusAdviceV05 addSplmtryData(SupplementaryData1 splmtryData) {
getSplmtryData().add(splmtryData);
return this;
}
}