
com.prowidesoftware.swift.model.mx.dic.MeetingVoteExecutionConfirmationV06 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;
/**
* Scope
* The MeetingVoteExecutionConfirmation message is sent by an issuer, its agent or an intermediary to another intermediary, a party holding the right to vote, a registered security holder or to a beneficial holder to confirm, to the Sender of the MeetingInstruction message, that their vote has been recorded and counted by the Issuer.
* Usage
* This message is sent after the shareholders meeting has taken place. The Sender of this message confirms the execution of the vote at the meeting.
* This messages is sent if the Sender of the MeetingInstruction message has requested such a confirmation or if market practice or regulation stipulates the need for a full audit trail.
* This message definition is intended for use with the Business Application Header (head.001.001.01).
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MeetingVoteExecutionConfirmationV06", propOrder = {
"mtgInstrId",
"mtgRef",
"finInstrmId",
"voteInstrs",
"voteInstrsConfURLAdr",
"splmtryData"
})
public class MeetingVoteExecutionConfirmationV06 {
@XmlElement(name = "MtgInstrId", required = true)
protected String mtgInstrId;
@XmlElement(name = "MtgRef", required = true)
protected MeetingReference8 mtgRef;
@XmlElement(name = "FinInstrmId", required = true)
protected SecurityIdentification19 finInstrmId;
@XmlElement(name = "VoteInstrs")
protected List voteInstrs;
@XmlElement(name = "VoteInstrsConfURLAdr")
protected String voteInstrsConfURLAdr;
@XmlElement(name = "SplmtryData")
protected List splmtryData;
/**
* Gets the value of the mtgInstrId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMtgInstrId() {
return mtgInstrId;
}
/**
* Sets the value of the mtgInstrId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public MeetingVoteExecutionConfirmationV06 setMtgInstrId(String value) {
this.mtgInstrId = value;
return this;
}
/**
* Gets the value of the mtgRef property.
*
* @return
* possible object is
* {@link MeetingReference8 }
*
*/
public MeetingReference8 getMtgRef() {
return mtgRef;
}
/**
* Sets the value of the mtgRef property.
*
* @param value
* allowed object is
* {@link MeetingReference8 }
*
*/
public MeetingVoteExecutionConfirmationV06 setMtgRef(MeetingReference8 value) {
this.mtgRef = 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 MeetingVoteExecutionConfirmationV06 setFinInstrmId(SecurityIdentification19 value) {
this.finInstrmId = value;
return this;
}
/**
* Gets the value of the voteInstrs 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 voteInstrs property.
*
*
* For example, to add a new item, do as follows:
*
* getVoteInstrs().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link DetailedInstructionStatus13 }
*
*
*/
public List getVoteInstrs() {
if (voteInstrs == null) {
voteInstrs = new ArrayList();
}
return this.voteInstrs;
}
/**
* Gets the value of the voteInstrsConfURLAdr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVoteInstrsConfURLAdr() {
return voteInstrsConfURLAdr;
}
/**
* Sets the value of the voteInstrsConfURLAdr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public MeetingVoteExecutionConfirmationV06 setVoteInstrsConfURLAdr(String value) {
this.voteInstrsConfURLAdr = 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 voteInstrs list.
* @see #getVoteInstrs()
*
*/
public MeetingVoteExecutionConfirmationV06 addVoteInstrs(DetailedInstructionStatus13 voteInstrs) {
getVoteInstrs().add(voteInstrs);
return this;
}
/**
* Adds a new item to the splmtryData list.
* @see #getSplmtryData()
*
*/
public MeetingVoteExecutionConfirmationV06 addSplmtryData(SupplementaryData1 splmtryData) {
getSplmtryData().add(splmtryData);
return this;
}
}