com.prowidesoftware.swift.model.mx.dic.ShareholdersIdentificationDisclosureRequestCancellationAdviceV01 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.XmlSchemaType;
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 ShareholdersIdentificationDisclosureCancellationAdvice message is sent by an issuer or by a third party nominated by the issuer (such as an issuer's agent) to the first intermediaries in a custody chain or is sent by any intermediaries in a custody chain to the next intermediary down the chain of intermediaries (towards the investor side of the chain) in order to withdraw/cancel the disclosure request of shareholders identity previously sent.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ShareholdersIdentificationDisclosureRequestCancellationAdviceV01", propOrder = {
"issrDsclsrReqRef",
"cxlRsn",
"issr",
"splmtryData"
})
public class ShareholdersIdentificationDisclosureRequestCancellationAdviceV01 {
@XmlElement(name = "IssrDsclsrReqRef", required = true)
protected DisclosureRequestIdentification1 issrDsclsrReqRef;
@XmlElement(name = "CxlRsn")
@XmlSchemaType(name = "string")
protected DisclosureRequestCancellationReason1Code cxlRsn;
@XmlElement(name = "Issr")
protected PartyIdentification129Choice issr;
@XmlElement(name = "SplmtryData")
protected List splmtryData;
/**
* 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 ShareholdersIdentificationDisclosureRequestCancellationAdviceV01 setIssrDsclsrReqRef(DisclosureRequestIdentification1 value) {
this.issrDsclsrReqRef = value;
return this;
}
/**
* Gets the value of the cxlRsn property.
*
* @return
* possible object is
* {@link DisclosureRequestCancellationReason1Code }
*
*/
public DisclosureRequestCancellationReason1Code getCxlRsn() {
return cxlRsn;
}
/**
* Sets the value of the cxlRsn property.
*
* @param value
* allowed object is
* {@link DisclosureRequestCancellationReason1Code }
*
*/
public ShareholdersIdentificationDisclosureRequestCancellationAdviceV01 setCxlRsn(DisclosureRequestCancellationReason1Code value) {
this.cxlRsn = value;
return this;
}
/**
* Gets the value of the issr property.
*
* @return
* possible object is
* {@link PartyIdentification129Choice }
*
*/
public PartyIdentification129Choice getIssr() {
return issr;
}
/**
* Sets the value of the issr property.
*
* @param value
* allowed object is
* {@link PartyIdentification129Choice }
*
*/
public ShareholdersIdentificationDisclosureRequestCancellationAdviceV01 setIssr(PartyIdentification129Choice value) {
this.issr = 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 ShareholdersIdentificationDisclosureRequestCancellationAdviceV01 addSplmtryData(SupplementaryData1 splmtryData) {
getSplmtryData().add(splmtryData);
return this;
}
}