
com.prowidesoftware.swift.model.mx.dic.FinancialInstrument8 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.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;
/**
* Security that is a sub-set of an investment fund, and is governed by the same investment fund policy, eg, dividend option or valuation currency.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FinancialInstrument8", propOrder = {
"id",
"nm",
"splmtryId",
"dnmtnCcy",
"clssTp",
"sctiesForm",
"dstrbtnPlcy",
"dualFndInd"
})
public class FinancialInstrument8 {
@XmlElement(name = "Id", required = true)
protected List id;
@XmlElement(name = "Nm")
protected String nm;
@XmlElement(name = "SplmtryId")
protected String splmtryId;
@XmlElement(name = "DnmtnCcy")
protected String dnmtnCcy;
@XmlElement(name = "ClssTp")
protected String clssTp;
@XmlElement(name = "SctiesForm")
@XmlSchemaType(name = "string")
protected FormOfSecurity1Code sctiesForm;
@XmlElement(name = "DstrbtnPlcy")
@XmlSchemaType(name = "string")
protected DistributionPolicy1Code dstrbtnPlcy;
@XmlElement(name = "DualFndInd")
protected boolean dualFndInd;
/**
* Gets the value of the id 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 id property.
*
*
* For example, to add a new item, do as follows:
*
* getId().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SecurityIdentification3Choice }
*
*
*/
public List getId() {
if (id == null) {
id = new ArrayList();
}
return this.id;
}
/**
* Gets the value of the nm property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNm() {
return nm;
}
/**
* Sets the value of the nm property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public FinancialInstrument8 setNm(String value) {
this.nm = value;
return this;
}
/**
* Gets the value of the splmtryId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSplmtryId() {
return splmtryId;
}
/**
* Sets the value of the splmtryId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public FinancialInstrument8 setSplmtryId(String value) {
this.splmtryId = value;
return this;
}
/**
* Gets the value of the dnmtnCcy property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDnmtnCcy() {
return dnmtnCcy;
}
/**
* Sets the value of the dnmtnCcy property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public FinancialInstrument8 setDnmtnCcy(String value) {
this.dnmtnCcy = value;
return this;
}
/**
* Gets the value of the clssTp property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getClssTp() {
return clssTp;
}
/**
* Sets the value of the clssTp property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public FinancialInstrument8 setClssTp(String value) {
this.clssTp = value;
return this;
}
/**
* Gets the value of the sctiesForm property.
*
* @return
* possible object is
* {@link FormOfSecurity1Code }
*
*/
public FormOfSecurity1Code getSctiesForm() {
return sctiesForm;
}
/**
* Sets the value of the sctiesForm property.
*
* @param value
* allowed object is
* {@link FormOfSecurity1Code }
*
*/
public FinancialInstrument8 setSctiesForm(FormOfSecurity1Code value) {
this.sctiesForm = value;
return this;
}
/**
* Gets the value of the dstrbtnPlcy property.
*
* @return
* possible object is
* {@link DistributionPolicy1Code }
*
*/
public DistributionPolicy1Code getDstrbtnPlcy() {
return dstrbtnPlcy;
}
/**
* Sets the value of the dstrbtnPlcy property.
*
* @param value
* allowed object is
* {@link DistributionPolicy1Code }
*
*/
public FinancialInstrument8 setDstrbtnPlcy(DistributionPolicy1Code value) {
this.dstrbtnPlcy = value;
return this;
}
/**
* Gets the value of the dualFndInd property.
*
*/
public boolean isDualFndInd() {
return dualFndInd;
}
/**
* Sets the value of the dualFndInd property.
*
*/
public FinancialInstrument8 setDualFndInd(boolean value) {
this.dualFndInd = value;
return this;
}
@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 id list.
* @see #getId()
*
*/
public FinancialInstrument8 addId(SecurityIdentification3Choice id) {
getId().add(id);
return this;
}
}