com.prowidesoftware.swift.model.mx.dic.TransactionDates2 Maven / Gradle / Ivy
Show all versions of pw-iso20022 Show documentation
package com.prowidesoftware.swift.model.mx.dic;
import java.time.LocalDate;
import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.List;
import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
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;
/**
* Set of elements used to provide information on the dates related to the underlying individual transaction.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TransactionDates2", propOrder = {
"accptncDtTm",
"tradActvtyCtrctlSttlmDt",
"tradDt",
"intrBkSttlmDt",
"startDt",
"endDt",
"txDtTm",
"prtry"
})
public class TransactionDates2 {
@XmlElement(name = "AccptncDtTm", type = String.class)
@XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected OffsetDateTime accptncDtTm;
@XmlElement(name = "TradActvtyCtrctlSttlmDt", type = String.class)
@XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected LocalDate tradActvtyCtrctlSttlmDt;
@XmlElement(name = "TradDt", type = String.class)
@XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected LocalDate tradDt;
@XmlElement(name = "IntrBkSttlmDt", type = String.class)
@XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected LocalDate intrBkSttlmDt;
@XmlElement(name = "StartDt", type = String.class)
@XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected LocalDate startDt;
@XmlElement(name = "EndDt", type = String.class)
@XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected LocalDate endDt;
@XmlElement(name = "TxDtTm", type = String.class)
@XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
@XmlSchemaType(name = "dateTime")
protected OffsetDateTime txDtTm;
@XmlElement(name = "Prtry")
protected List prtry;
/**
* Gets the value of the accptncDtTm property.
*
* @return
* possible object is
* {@link String }
*
*/
public OffsetDateTime getAccptncDtTm() {
return accptncDtTm;
}
/**
* Sets the value of the accptncDtTm property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public TransactionDates2 setAccptncDtTm(OffsetDateTime value) {
this.accptncDtTm = value;
return this;
}
/**
* Gets the value of the tradActvtyCtrctlSttlmDt property.
*
* @return
* possible object is
* {@link String }
*
*/
public LocalDate getTradActvtyCtrctlSttlmDt() {
return tradActvtyCtrctlSttlmDt;
}
/**
* Sets the value of the tradActvtyCtrctlSttlmDt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public TransactionDates2 setTradActvtyCtrctlSttlmDt(LocalDate value) {
this.tradActvtyCtrctlSttlmDt = value;
return this;
}
/**
* Gets the value of the tradDt property.
*
* @return
* possible object is
* {@link String }
*
*/
public LocalDate getTradDt() {
return tradDt;
}
/**
* Sets the value of the tradDt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public TransactionDates2 setTradDt(LocalDate value) {
this.tradDt = value;
return this;
}
/**
* Gets the value of the intrBkSttlmDt property.
*
* @return
* possible object is
* {@link String }
*
*/
public LocalDate getIntrBkSttlmDt() {
return intrBkSttlmDt;
}
/**
* Sets the value of the intrBkSttlmDt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public TransactionDates2 setIntrBkSttlmDt(LocalDate value) {
this.intrBkSttlmDt = value;
return this;
}
/**
* Gets the value of the startDt property.
*
* @return
* possible object is
* {@link String }
*
*/
public LocalDate getStartDt() {
return startDt;
}
/**
* Sets the value of the startDt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public TransactionDates2 setStartDt(LocalDate value) {
this.startDt = value;
return this;
}
/**
* Gets the value of the endDt property.
*
* @return
* possible object is
* {@link String }
*
*/
public LocalDate getEndDt() {
return endDt;
}
/**
* Sets the value of the endDt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public TransactionDates2 setEndDt(LocalDate value) {
this.endDt = value;
return this;
}
/**
* Gets the value of the txDtTm property.
*
* @return
* possible object is
* {@link String }
*
*/
public OffsetDateTime getTxDtTm() {
return txDtTm;
}
/**
* Sets the value of the txDtTm property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public TransactionDates2 setTxDtTm(OffsetDateTime value) {
this.txDtTm = value;
return this;
}
/**
* Gets the value of the prtry 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 prtry property.
*
*
* For example, to add a new item, do as follows:
*
* getPrtry().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ProprietaryDate2 }
*
*
* @return
* The value of the prtry property.
*/
public List getPrtry() {
if (prtry == null) {
prtry = new ArrayList<>();
}
return this.prtry;
}
@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 prtry list.
* @see #getPrtry()
*
*/
public TransactionDates2 addPrtry(ProprietaryDate2 prtry) {
getPrtry().add(prtry);
return this;
}
}