
com.prowidesoftware.swift.model.mx.dic.FinancialInstrumentIdentification2 Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
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;
/**
* Identification of a security.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FinancialInstrumentIdentification2", propOrder = {
"id",
"nm",
"shrtNm",
"clssfctnTp"
})
public class FinancialInstrumentIdentification2 {
@XmlElement(name = "Id", required = true)
protected SecurityIdentification25Choice id;
@XmlElement(name = "Nm")
protected String nm;
@XmlElement(name = "ShrtNm")
protected String shrtNm;
@XmlElement(name = "ClssfctnTp")
protected ClassificationType32Choice clssfctnTp;
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link SecurityIdentification25Choice }
*
*/
public SecurityIdentification25Choice getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link SecurityIdentification25Choice }
*
*/
public FinancialInstrumentIdentification2 setId(SecurityIdentification25Choice value) {
this.id = value;
return this;
}
/**
* 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 FinancialInstrumentIdentification2 setNm(String value) {
this.nm = value;
return this;
}
/**
* Gets the value of the shrtNm property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getShrtNm() {
return shrtNm;
}
/**
* Sets the value of the shrtNm property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public FinancialInstrumentIdentification2 setShrtNm(String value) {
this.shrtNm = value;
return this;
}
/**
* Gets the value of the clssfctnTp property.
*
* @return
* possible object is
* {@link ClassificationType32Choice }
*
*/
public ClassificationType32Choice getClssfctnTp() {
return clssfctnTp;
}
/**
* Sets the value of the clssfctnTp property.
*
* @param value
* allowed object is
* {@link ClassificationType32Choice }
*
*/
public FinancialInstrumentIdentification2 setClssfctnTp(ClassificationType32Choice value) {
this.clssfctnTp = 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);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy