com.prowidesoftware.swift.model.mx.dic.ProcessingCharacteristics3 Maven / Gradle / Ivy
Show all versions of pw-iso20022 Show documentation
package com.prowidesoftware.swift.model.mx.dic;
import java.time.OffsetTime;
import java.util.ArrayList;
import java.util.List;
import com.prowidesoftware.swift.model.mx.adapters.IsoTimeAdapter;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
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;
/**
* Processing characteristics linked to the instrument, ie, not to the market.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ProcessingCharacteristics3", propOrder = {
"dealgCcyAccptd",
"redAuthstn",
"amtInd",
"unitsInd",
"mainFndOrdrDskLctn",
"dealgCutOffTm",
"dealgCutOffTmFrame",
"dealgFrqcy",
"dealgFrqcyDesc",
"ltdPrd",
"sttlmCycl"
})
public class ProcessingCharacteristics3 {
@XmlElement(name = "DealgCcyAccptd", required = true)
protected List dealgCcyAccptd;
@XmlElement(name = "RedAuthstn", required = true)
protected Forms redAuthstn;
@XmlElement(name = "AmtInd")
protected boolean amtInd;
@XmlElement(name = "UnitsInd")
protected boolean unitsInd;
@XmlElement(name = "MainFndOrdrDskLctn", required = true)
protected MainFundOrderDeskLocation1 mainFndOrdrDskLctn;
@XmlElement(name = "DealgCutOffTm", required = true, type = String.class)
@XmlJavaTypeAdapter(IsoTimeAdapter.class)
@XmlSchemaType(name = "time")
protected OffsetTime dealgCutOffTm;
@XmlElement(name = "DealgCutOffTmFrame", required = true)
protected TimeFrame3 dealgCutOffTmFrame;
@XmlElement(name = "DealgFrqcy", required = true)
@XmlSchemaType(name = "string")
protected EventFrequency5Code dealgFrqcy;
@XmlElement(name = "DealgFrqcyDesc", required = true)
protected String dealgFrqcyDesc;
@XmlElement(name = "LtdPrd")
protected String ltdPrd;
@XmlElement(name = "SttlmCycl", required = true)
protected TimeFrame4Choice sttlmCycl;
/**
* Gets the value of the dealgCcyAccptd 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 Jakarta XML Binding object.
* This is why there is not a {@code set} method for the dealgCcyAccptd property.
*
*
* For example, to add a new item, do as follows:
*
* getDealgCcyAccptd().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
* @return
* The value of the dealgCcyAccptd property.
*/
public List getDealgCcyAccptd() {
if (dealgCcyAccptd == null) {
dealgCcyAccptd = new ArrayList<>();
}
return this.dealgCcyAccptd;
}
/**
* Gets the value of the redAuthstn property.
*
* @return
* possible object is
* {@link Forms }
*
*/
public Forms getRedAuthstn() {
return redAuthstn;
}
/**
* Sets the value of the redAuthstn property.
*
* @param value
* allowed object is
* {@link Forms }
*
*/
public ProcessingCharacteristics3 setRedAuthstn(Forms value) {
this.redAuthstn = value;
return this;
}
/**
* Gets the value of the amtInd property.
*
*/
public boolean isAmtInd() {
return amtInd;
}
/**
* Sets the value of the amtInd property.
*
*/
public ProcessingCharacteristics3 setAmtInd(boolean value) {
this.amtInd = value;
return this;
}
/**
* Gets the value of the unitsInd property.
*
*/
public boolean isUnitsInd() {
return unitsInd;
}
/**
* Sets the value of the unitsInd property.
*
*/
public ProcessingCharacteristics3 setUnitsInd(boolean value) {
this.unitsInd = value;
return this;
}
/**
* Gets the value of the mainFndOrdrDskLctn property.
*
* @return
* possible object is
* {@link MainFundOrderDeskLocation1 }
*
*/
public MainFundOrderDeskLocation1 getMainFndOrdrDskLctn() {
return mainFndOrdrDskLctn;
}
/**
* Sets the value of the mainFndOrdrDskLctn property.
*
* @param value
* allowed object is
* {@link MainFundOrderDeskLocation1 }
*
*/
public ProcessingCharacteristics3 setMainFndOrdrDskLctn(MainFundOrderDeskLocation1 value) {
this.mainFndOrdrDskLctn = value;
return this;
}
/**
* Gets the value of the dealgCutOffTm property.
*
* @return
* possible object is
* {@link String }
*
*/
public OffsetTime getDealgCutOffTm() {
return dealgCutOffTm;
}
/**
* Sets the value of the dealgCutOffTm property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public ProcessingCharacteristics3 setDealgCutOffTm(OffsetTime value) {
this.dealgCutOffTm = value;
return this;
}
/**
* Gets the value of the dealgCutOffTmFrame property.
*
* @return
* possible object is
* {@link TimeFrame3 }
*
*/
public TimeFrame3 getDealgCutOffTmFrame() {
return dealgCutOffTmFrame;
}
/**
* Sets the value of the dealgCutOffTmFrame property.
*
* @param value
* allowed object is
* {@link TimeFrame3 }
*
*/
public ProcessingCharacteristics3 setDealgCutOffTmFrame(TimeFrame3 value) {
this.dealgCutOffTmFrame = value;
return this;
}
/**
* Gets the value of the dealgFrqcy property.
*
* @return
* possible object is
* {@link EventFrequency5Code }
*
*/
public EventFrequency5Code getDealgFrqcy() {
return dealgFrqcy;
}
/**
* Sets the value of the dealgFrqcy property.
*
* @param value
* allowed object is
* {@link EventFrequency5Code }
*
*/
public ProcessingCharacteristics3 setDealgFrqcy(EventFrequency5Code value) {
this.dealgFrqcy = value;
return this;
}
/**
* Gets the value of the dealgFrqcyDesc property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDealgFrqcyDesc() {
return dealgFrqcyDesc;
}
/**
* Sets the value of the dealgFrqcyDesc property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public ProcessingCharacteristics3 setDealgFrqcyDesc(String value) {
this.dealgFrqcyDesc = value;
return this;
}
/**
* Gets the value of the ltdPrd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLtdPrd() {
return ltdPrd;
}
/**
* Sets the value of the ltdPrd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public ProcessingCharacteristics3 setLtdPrd(String value) {
this.ltdPrd = value;
return this;
}
/**
* Gets the value of the sttlmCycl property.
*
* @return
* possible object is
* {@link TimeFrame4Choice }
*
*/
public TimeFrame4Choice getSttlmCycl() {
return sttlmCycl;
}
/**
* Sets the value of the sttlmCycl property.
*
* @param value
* allowed object is
* {@link TimeFrame4Choice }
*
*/
public ProcessingCharacteristics3 setSttlmCycl(TimeFrame4Choice value) {
this.sttlmCycl = 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 dealgCcyAccptd list.
* @see #getDealgCcyAccptd()
*
*/
public ProcessingCharacteristics3 addDealgCcyAccptd(String dealgCcyAccptd) {
getDealgCcyAccptd().add(dealgCcyAccptd);
return this;
}
}