com.prowidesoftware.swift.model.mx.dic.SecurityDate21 Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import java.time.LocalDate;
import com.prowidesoftware.swift.model.mx.adapters.IsoDateAdapter;
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;
/**
* Specifies security date details.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SecurityDate21", propOrder = {
"pstngDt",
"avlblDt",
"prpssDt",
"dvddRnkgDt",
"earlstPmtDt",
"pmtDt"
})
public class SecurityDate21 {
@XmlElement(name = "PstngDt", required = true, type = String.class)
@XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected LocalDate pstngDt;
@XmlElement(name = "AvlblDt")
protected DateFormat30Choice avlblDt;
@XmlElement(name = "PrpssDt")
protected DateFormat30Choice prpssDt;
@XmlElement(name = "DvddRnkgDt")
protected DateFormat30Choice dvddRnkgDt;
@XmlElement(name = "EarlstPmtDt")
protected DateFormat30Choice earlstPmtDt;
@XmlElement(name = "PmtDt")
protected DateFormat30Choice pmtDt;
/**
* Gets the value of the pstngDt property.
*
* @return
* possible object is
* {@link String }
*
*/
public LocalDate getPstngDt() {
return pstngDt;
}
/**
* Sets the value of the pstngDt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public SecurityDate21 setPstngDt(LocalDate value) {
this.pstngDt = value;
return this;
}
/**
* Gets the value of the avlblDt property.
*
* @return
* possible object is
* {@link DateFormat30Choice }
*
*/
public DateFormat30Choice getAvlblDt() {
return avlblDt;
}
/**
* Sets the value of the avlblDt property.
*
* @param value
* allowed object is
* {@link DateFormat30Choice }
*
*/
public SecurityDate21 setAvlblDt(DateFormat30Choice value) {
this.avlblDt = value;
return this;
}
/**
* Gets the value of the prpssDt property.
*
* @return
* possible object is
* {@link DateFormat30Choice }
*
*/
public DateFormat30Choice getPrpssDt() {
return prpssDt;
}
/**
* Sets the value of the prpssDt property.
*
* @param value
* allowed object is
* {@link DateFormat30Choice }
*
*/
public SecurityDate21 setPrpssDt(DateFormat30Choice value) {
this.prpssDt = value;
return this;
}
/**
* Gets the value of the dvddRnkgDt property.
*
* @return
* possible object is
* {@link DateFormat30Choice }
*
*/
public DateFormat30Choice getDvddRnkgDt() {
return dvddRnkgDt;
}
/**
* Sets the value of the dvddRnkgDt property.
*
* @param value
* allowed object is
* {@link DateFormat30Choice }
*
*/
public SecurityDate21 setDvddRnkgDt(DateFormat30Choice value) {
this.dvddRnkgDt = value;
return this;
}
/**
* Gets the value of the earlstPmtDt property.
*
* @return
* possible object is
* {@link DateFormat30Choice }
*
*/
public DateFormat30Choice getEarlstPmtDt() {
return earlstPmtDt;
}
/**
* Sets the value of the earlstPmtDt property.
*
* @param value
* allowed object is
* {@link DateFormat30Choice }
*
*/
public SecurityDate21 setEarlstPmtDt(DateFormat30Choice value) {
this.earlstPmtDt = value;
return this;
}
/**
* Gets the value of the pmtDt property.
*
* @return
* possible object is
* {@link DateFormat30Choice }
*
*/
public DateFormat30Choice getPmtDt() {
return pmtDt;
}
/**
* Sets the value of the pmtDt property.
*
* @param value
* allowed object is
* {@link DateFormat30Choice }
*
*/
public SecurityDate21 setPmtDt(DateFormat30Choice value) {
this.pmtDt = 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