com.prowidesoftware.swift.model.mx.dic.AccountContract3 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pw-iso20022 Show documentation
Show all versions of pw-iso20022 Show documentation
Prowide Library for ISO 20022 messages
The newest version!
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 target and actual dates dates related to account opening and closing.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AccountContract3", propOrder = {
"trgtGoLiveDt",
"trgtClsgDt",
"goLiveDt",
"clsgDt",
"urgcyFlg",
"rmvlInd"
})
public class AccountContract3 {
@XmlElement(name = "TrgtGoLiveDt", type = String.class)
@XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected LocalDate trgtGoLiveDt;
@XmlElement(name = "TrgtClsgDt", type = String.class)
@XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected LocalDate trgtClsgDt;
@XmlElement(name = "GoLiveDt", type = String.class)
@XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected LocalDate goLiveDt;
@XmlElement(name = "ClsgDt", type = String.class)
@XmlJavaTypeAdapter(IsoDateAdapter.class)
@XmlSchemaType(name = "date")
protected LocalDate clsgDt;
@XmlElement(name = "UrgcyFlg")
protected Boolean urgcyFlg;
@XmlElement(name = "RmvlInd")
protected Boolean rmvlInd;
/**
* Gets the value of the trgtGoLiveDt property.
*
* @return
* possible object is
* {@link String }
*
*/
public LocalDate getTrgtGoLiveDt() {
return trgtGoLiveDt;
}
/**
* Sets the value of the trgtGoLiveDt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public AccountContract3 setTrgtGoLiveDt(LocalDate value) {
this.trgtGoLiveDt = value;
return this;
}
/**
* Gets the value of the trgtClsgDt property.
*
* @return
* possible object is
* {@link String }
*
*/
public LocalDate getTrgtClsgDt() {
return trgtClsgDt;
}
/**
* Sets the value of the trgtClsgDt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public AccountContract3 setTrgtClsgDt(LocalDate value) {
this.trgtClsgDt = value;
return this;
}
/**
* Gets the value of the goLiveDt property.
*
* @return
* possible object is
* {@link String }
*
*/
public LocalDate getGoLiveDt() {
return goLiveDt;
}
/**
* Sets the value of the goLiveDt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public AccountContract3 setGoLiveDt(LocalDate value) {
this.goLiveDt = value;
return this;
}
/**
* Gets the value of the clsgDt property.
*
* @return
* possible object is
* {@link String }
*
*/
public LocalDate getClsgDt() {
return clsgDt;
}
/**
* Sets the value of the clsgDt property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public AccountContract3 setClsgDt(LocalDate value) {
this.clsgDt = value;
return this;
}
/**
* Gets the value of the urgcyFlg property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isUrgcyFlg() {
return urgcyFlg;
}
/**
* Sets the value of the urgcyFlg property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public AccountContract3 setUrgcyFlg(Boolean value) {
this.urgcyFlg = value;
return this;
}
/**
* Gets the value of the rmvlInd property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isRmvlInd() {
return rmvlInd;
}
/**
* Sets the value of the rmvlInd property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public AccountContract3 setRmvlInd(Boolean value) {
this.rmvlInd = 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