
com.prowidesoftware.swift.model.mx.dic.ShareholderIdentificationDisclosureResponseStatusAdviceV01 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 ShareholdersIdentificationDisclosureResponseStatusAdvice message is sent by an issuer or by a third party nominated by the issuer (such as an issuer's agent) to the intermediary in a custody chain in response to a ShareholderIdentificationDisclosureResponse message or in response to a multipart response report (sent with pagination in multiple messages) in order to report about the acceptance status of the received ShareholderIdentificationDisclosureResponse message/report.
* Usage: when the shareholder identification disclosure response is sent in a multipart response report (with several messages), a single response status advice only may be sent for the acceptance status of the whole report.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ShareholderIdentificationDisclosureResponseStatusAdviceV01", propOrder = {
"dsclsrRspnId",
"issrDsclsrReqRef",
"rspndgIntrmy",
"rspnRcptnSts",
"splmtryData"
})
public class ShareholderIdentificationDisclosureResponseStatusAdviceV01 {
@XmlElement(name = "DsclsrRspnId", required = true)
protected String dsclsrRspnId;
@XmlElement(name = "IssrDsclsrReqRef", required = true)
protected DisclosureRequestIdentification1 issrDsclsrReqRef;
@XmlElement(name = "RspndgIntrmy", required = true)
protected PartyIdentification215 rspndgIntrmy;
@XmlElement(name = "RspnRcptnSts", required = true)
protected ResponseProcessingStatus1Choice rspnRcptnSts;
@XmlElement(name = "SplmtryData")
protected List splmtryData;
/**
* Gets the value of the dsclsrRspnId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDsclsrRspnId() {
return dsclsrRspnId;
}
/**
* Sets the value of the dsclsrRspnId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public ShareholderIdentificationDisclosureResponseStatusAdviceV01 setDsclsrRspnId(String value) {
this.dsclsrRspnId = value;
return this;
}
/**
* Gets the value of the issrDsclsrReqRef property.
*
* @return
* possible object is
* {@link DisclosureRequestIdentification1 }
*
*/
public DisclosureRequestIdentification1 getIssrDsclsrReqRef() {
return issrDsclsrReqRef;
}
/**
* Sets the value of the issrDsclsrReqRef property.
*
* @param value
* allowed object is
* {@link DisclosureRequestIdentification1 }
*
*/
public ShareholderIdentificationDisclosureResponseStatusAdviceV01 setIssrDsclsrReqRef(DisclosureRequestIdentification1 value) {
this.issrDsclsrReqRef = value;
return this;
}
/**
* Gets the value of the rspndgIntrmy property.
*
* @return
* possible object is
* {@link PartyIdentification215 }
*
*/
public PartyIdentification215 getRspndgIntrmy() {
return rspndgIntrmy;
}
/**
* Sets the value of the rspndgIntrmy property.
*
* @param value
* allowed object is
* {@link PartyIdentification215 }
*
*/
public ShareholderIdentificationDisclosureResponseStatusAdviceV01 setRspndgIntrmy(PartyIdentification215 value) {
this.rspndgIntrmy = value;
return this;
}
/**
* Gets the value of the rspnRcptnSts property.
*
* @return
* possible object is
* {@link ResponseProcessingStatus1Choice }
*
*/
public ResponseProcessingStatus1Choice getRspnRcptnSts() {
return rspnRcptnSts;
}
/**
* Sets the value of the rspnRcptnSts property.
*
* @param value
* allowed object is
* {@link ResponseProcessingStatus1Choice }
*
*/
public ShareholderIdentificationDisclosureResponseStatusAdviceV01 setRspnRcptnSts(ResponseProcessingStatus1Choice value) {
this.rspnRcptnSts = 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 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 splmtryData list.
* @see #getSplmtryData()
*
*/
public ShareholderIdentificationDisclosureResponseStatusAdviceV01 addSplmtryData(SupplementaryData1 splmtryData) {
getSplmtryData().add(splmtryData);
return this;
}
}