com.prowidesoftware.swift.model.mx.dic.SecuritiesSettlementTransactionGenerationNotificationV11 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 SecuritiesSettlementTransactionGenerationNotification to an account owner to advise the account owner of a securities settlement transaction that has been generated/created by the account servicer for the account owner. The reason for creation can range from the automatic transformation of pending settlement instructions following a corporate event to the recovery of an account owner transactions' database initiated by its account servicer.
* The account servicer/owner relationship may be:
* - a central securities depository or another settlement market infrastructure acting on behalf of their participants
* - an agent (sub-custodian) acting on behalf of their global custodian customer, or
* - a custodian acting on behalf of an investment management institution or a broker/dealer
*
* Usage
* The message may also be used to:
* - re-send a message previously sent,
* - provide a third party with a copy of a message for information,
* - re-send to a third party a copy of a message for information using the relevant elements in the Business Application Header.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SecuritiesSettlementTransactionGenerationNotificationV11", propOrder = {
"txIdDtls",
"nbCounts",
"lnkgs",
"tradDtls",
"finInstrmId",
"finInstrmAttrbts",
"qtyAndAcctDtls",
"sttlmParams",
"dlvrgSttlmPties",
"rcvgSttlmPties",
"cshPties",
"sttlmAmt",
"othrAmts",
"othrBizPties",
"addtlPhysOrRegnDtls",
"gnrtdRsn",
"stsAndRsn",
"splmtryData"
})
public class SecuritiesSettlementTransactionGenerationNotificationV11 {
@XmlElement(name = "TxIdDtls", required = true)
protected SettlementTypeAndIdentification27 txIdDtls;
@XmlElement(name = "NbCounts")
protected NumberCount2Choice nbCounts;
@XmlElement(name = "Lnkgs")
protected List lnkgs;
@XmlElement(name = "TradDtls", required = true)
protected SecuritiesTradeDetails117 tradDtls;
@XmlElement(name = "FinInstrmId", required = true)
protected SecurityIdentification19 finInstrmId;
@XmlElement(name = "FinInstrmAttrbts")
protected FinancialInstrumentAttributes111 finInstrmAttrbts;
@XmlElement(name = "QtyAndAcctDtls", required = true)
protected List qtyAndAcctDtls;
@XmlElement(name = "SttlmParams", required = true)
protected SettlementDetails204 sttlmParams;
@XmlElement(name = "DlvrgSttlmPties")
protected SettlementParties100 dlvrgSttlmPties;
@XmlElement(name = "RcvgSttlmPties")
protected SettlementParties100 rcvgSttlmPties;
@XmlElement(name = "CshPties")
protected CashParties36 cshPties;
@XmlElement(name = "SttlmAmt")
protected AmountAndDirection94 sttlmAmt;
@XmlElement(name = "OthrAmts")
protected OtherAmounts39 othrAmts;
@XmlElement(name = "OthrBizPties")
protected OtherParties43 othrBizPties;
@XmlElement(name = "AddtlPhysOrRegnDtls")
protected RegistrationParameters6 addtlPhysOrRegnDtls;
@XmlElement(name = "GnrtdRsn")
protected List gnrtdRsn;
@XmlElement(name = "StsAndRsn")
protected StatusAndReason28 stsAndRsn;
@XmlElement(name = "SplmtryData")
protected List splmtryData;
/**
* Gets the value of the txIdDtls property.
*
* @return
* possible object is
* {@link SettlementTypeAndIdentification27 }
*
*/
public SettlementTypeAndIdentification27 getTxIdDtls() {
return txIdDtls;
}
/**
* Sets the value of the txIdDtls property.
*
* @param value
* allowed object is
* {@link SettlementTypeAndIdentification27 }
*
*/
public SecuritiesSettlementTransactionGenerationNotificationV11 setTxIdDtls(SettlementTypeAndIdentification27 value) {
this.txIdDtls = value;
return this;
}
/**
* Gets the value of the nbCounts property.
*
* @return
* possible object is
* {@link NumberCount2Choice }
*
*/
public NumberCount2Choice getNbCounts() {
return nbCounts;
}
/**
* Sets the value of the nbCounts property.
*
* @param value
* allowed object is
* {@link NumberCount2Choice }
*
*/
public SecuritiesSettlementTransactionGenerationNotificationV11 setNbCounts(NumberCount2Choice value) {
this.nbCounts = value;
return this;
}
/**
* Gets the value of the lnkgs 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 lnkgs property.
*
*
* For example, to add a new item, do as follows:
*
* getLnkgs().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Linkages61 }
*
*
* @return
* The value of the lnkgs property.
*/
public List getLnkgs() {
if (lnkgs == null) {
lnkgs = new ArrayList<>();
}
return this.lnkgs;
}
/**
* Gets the value of the tradDtls property.
*
* @return
* possible object is
* {@link SecuritiesTradeDetails117 }
*
*/
public SecuritiesTradeDetails117 getTradDtls() {
return tradDtls;
}
/**
* Sets the value of the tradDtls property.
*
* @param value
* allowed object is
* {@link SecuritiesTradeDetails117 }
*
*/
public SecuritiesSettlementTransactionGenerationNotificationV11 setTradDtls(SecuritiesTradeDetails117 value) {
this.tradDtls = value;
return this;
}
/**
* Gets the value of the finInstrmId property.
*
* @return
* possible object is
* {@link SecurityIdentification19 }
*
*/
public SecurityIdentification19 getFinInstrmId() {
return finInstrmId;
}
/**
* Sets the value of the finInstrmId property.
*
* @param value
* allowed object is
* {@link SecurityIdentification19 }
*
*/
public SecuritiesSettlementTransactionGenerationNotificationV11 setFinInstrmId(SecurityIdentification19 value) {
this.finInstrmId = value;
return this;
}
/**
* Gets the value of the finInstrmAttrbts property.
*
* @return
* possible object is
* {@link FinancialInstrumentAttributes111 }
*
*/
public FinancialInstrumentAttributes111 getFinInstrmAttrbts() {
return finInstrmAttrbts;
}
/**
* Sets the value of the finInstrmAttrbts property.
*
* @param value
* allowed object is
* {@link FinancialInstrumentAttributes111 }
*
*/
public SecuritiesSettlementTransactionGenerationNotificationV11 setFinInstrmAttrbts(FinancialInstrumentAttributes111 value) {
this.finInstrmAttrbts = value;
return this;
}
/**
* Gets the value of the qtyAndAcctDtls 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 qtyAndAcctDtls property.
*
*
* For example, to add a new item, do as follows:
*
* getQtyAndAcctDtls().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link QuantityAndAccount95 }
*
*
* @return
* The value of the qtyAndAcctDtls property.
*/
public List getQtyAndAcctDtls() {
if (qtyAndAcctDtls == null) {
qtyAndAcctDtls = new ArrayList<>();
}
return this.qtyAndAcctDtls;
}
/**
* Gets the value of the sttlmParams property.
*
* @return
* possible object is
* {@link SettlementDetails204 }
*
*/
public SettlementDetails204 getSttlmParams() {
return sttlmParams;
}
/**
* Sets the value of the sttlmParams property.
*
* @param value
* allowed object is
* {@link SettlementDetails204 }
*
*/
public SecuritiesSettlementTransactionGenerationNotificationV11 setSttlmParams(SettlementDetails204 value) {
this.sttlmParams = value;
return this;
}
/**
* Gets the value of the dlvrgSttlmPties property.
*
* @return
* possible object is
* {@link SettlementParties100 }
*
*/
public SettlementParties100 getDlvrgSttlmPties() {
return dlvrgSttlmPties;
}
/**
* Sets the value of the dlvrgSttlmPties property.
*
* @param value
* allowed object is
* {@link SettlementParties100 }
*
*/
public SecuritiesSettlementTransactionGenerationNotificationV11 setDlvrgSttlmPties(SettlementParties100 value) {
this.dlvrgSttlmPties = value;
return this;
}
/**
* Gets the value of the rcvgSttlmPties property.
*
* @return
* possible object is
* {@link SettlementParties100 }
*
*/
public SettlementParties100 getRcvgSttlmPties() {
return rcvgSttlmPties;
}
/**
* Sets the value of the rcvgSttlmPties property.
*
* @param value
* allowed object is
* {@link SettlementParties100 }
*
*/
public SecuritiesSettlementTransactionGenerationNotificationV11 setRcvgSttlmPties(SettlementParties100 value) {
this.rcvgSttlmPties = value;
return this;
}
/**
* Gets the value of the cshPties property.
*
* @return
* possible object is
* {@link CashParties36 }
*
*/
public CashParties36 getCshPties() {
return cshPties;
}
/**
* Sets the value of the cshPties property.
*
* @param value
* allowed object is
* {@link CashParties36 }
*
*/
public SecuritiesSettlementTransactionGenerationNotificationV11 setCshPties(CashParties36 value) {
this.cshPties = value;
return this;
}
/**
* Gets the value of the sttlmAmt property.
*
* @return
* possible object is
* {@link AmountAndDirection94 }
*
*/
public AmountAndDirection94 getSttlmAmt() {
return sttlmAmt;
}
/**
* Sets the value of the sttlmAmt property.
*
* @param value
* allowed object is
* {@link AmountAndDirection94 }
*
*/
public SecuritiesSettlementTransactionGenerationNotificationV11 setSttlmAmt(AmountAndDirection94 value) {
this.sttlmAmt = value;
return this;
}
/**
* Gets the value of the othrAmts property.
*
* @return
* possible object is
* {@link OtherAmounts39 }
*
*/
public OtherAmounts39 getOthrAmts() {
return othrAmts;
}
/**
* Sets the value of the othrAmts property.
*
* @param value
* allowed object is
* {@link OtherAmounts39 }
*
*/
public SecuritiesSettlementTransactionGenerationNotificationV11 setOthrAmts(OtherAmounts39 value) {
this.othrAmts = value;
return this;
}
/**
* Gets the value of the othrBizPties property.
*
* @return
* possible object is
* {@link OtherParties43 }
*
*/
public OtherParties43 getOthrBizPties() {
return othrBizPties;
}
/**
* Sets the value of the othrBizPties property.
*
* @param value
* allowed object is
* {@link OtherParties43 }
*
*/
public SecuritiesSettlementTransactionGenerationNotificationV11 setOthrBizPties(OtherParties43 value) {
this.othrBizPties = value;
return this;
}
/**
* Gets the value of the addtlPhysOrRegnDtls property.
*
* @return
* possible object is
* {@link RegistrationParameters6 }
*
*/
public RegistrationParameters6 getAddtlPhysOrRegnDtls() {
return addtlPhysOrRegnDtls;
}
/**
* Sets the value of the addtlPhysOrRegnDtls property.
*
* @param value
* allowed object is
* {@link RegistrationParameters6 }
*
*/
public SecuritiesSettlementTransactionGenerationNotificationV11 setAddtlPhysOrRegnDtls(RegistrationParameters6 value) {
this.addtlPhysOrRegnDtls = value;
return this;
}
/**
* Gets the value of the gnrtdRsn 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 gnrtdRsn property.
*
*
* For example, to add a new item, do as follows:
*
* getGnrtdRsn().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link GeneratedReason5 }
*
*
* @return
* The value of the gnrtdRsn property.
*/
public List getGnrtdRsn() {
if (gnrtdRsn == null) {
gnrtdRsn = new ArrayList<>();
}
return this.gnrtdRsn;
}
/**
* Gets the value of the stsAndRsn property.
*
* @return
* possible object is
* {@link StatusAndReason28 }
*
*/
public StatusAndReason28 getStsAndRsn() {
return stsAndRsn;
}
/**
* Sets the value of the stsAndRsn property.
*
* @param value
* allowed object is
* {@link StatusAndReason28 }
*
*/
public SecuritiesSettlementTransactionGenerationNotificationV11 setStsAndRsn(StatusAndReason28 value) {
this.stsAndRsn = 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 lnkgs list.
* @see #getLnkgs()
*
*/
public SecuritiesSettlementTransactionGenerationNotificationV11 addLnkgs(Linkages61 lnkgs) {
getLnkgs().add(lnkgs);
return this;
}
/**
* Adds a new item to the qtyAndAcctDtls list.
* @see #getQtyAndAcctDtls()
*
*/
public SecuritiesSettlementTransactionGenerationNotificationV11 addQtyAndAcctDtls(QuantityAndAccount95 qtyAndAcctDtls) {
getQtyAndAcctDtls().add(qtyAndAcctDtls);
return this;
}
/**
* Adds a new item to the gnrtdRsn list.
* @see #getGnrtdRsn()
*
*/
public SecuritiesSettlementTransactionGenerationNotificationV11 addGnrtdRsn(GeneratedReason5 gnrtdRsn) {
getGnrtdRsn().add(gnrtdRsn);
return this;
}
/**
* Adds a new item to the splmtryData list.
* @see #getSplmtryData()
*
*/
public SecuritiesSettlementTransactionGenerationNotificationV11 addSplmtryData(SupplementaryData1 splmtryData) {
getSplmtryData().add(splmtryData);
return this;
}
}