
com.prowidesoftware.swift.model.mx.dic.AccountLiquidityReport1 Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import java.util.ArrayList;
import java.util.List;
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;
/**
* Details about praticipant's liquidity.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AccountLiquidityReport1", propOrder = {
"acct",
"acctOvrdueInd",
"lmtInf",
"lqdtyInf",
"arrstInf",
"dbtQdTxs",
"cdtQdTxs"
})
public class AccountLiquidityReport1 {
@XmlElement(name = "Acct", required = true)
protected CashAccount25 acct;
@XmlElement(name = "AcctOvrdueInd")
protected boolean acctOvrdueInd;
@XmlElement(name = "LmtInf")
protected List lmtInf;
@XmlElement(name = "LqdtyInf")
protected LiquidityDetails1 lqdtyInf;
@XmlElement(name = "ArrstInf", required = true)
protected ArrestedFunds1 arrstInf;
@XmlElement(name = "DbtQdTxs")
protected List dbtQdTxs;
@XmlElement(name = "CdtQdTxs")
protected List cdtQdTxs;
/**
* Gets the value of the acct property.
*
* @return
* possible object is
* {@link CashAccount25 }
*
*/
public CashAccount25 getAcct() {
return acct;
}
/**
* Sets the value of the acct property.
*
* @param value
* allowed object is
* {@link CashAccount25 }
*
*/
public AccountLiquidityReport1 setAcct(CashAccount25 value) {
this.acct = value;
return this;
}
/**
* Gets the value of the acctOvrdueInd property.
*
*/
public boolean isAcctOvrdueInd() {
return acctOvrdueInd;
}
/**
* Sets the value of the acctOvrdueInd property.
*
*/
public AccountLiquidityReport1 setAcctOvrdueInd(boolean value) {
this.acctOvrdueInd = value;
return this;
}
/**
* Gets the value of the lmtInf 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 JAXB object.
* This is why there is not a set
method for the lmtInf property.
*
*
* For example, to add a new item, do as follows:
*
* getLmtInf().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link AccountLimits1 }
*
*
*/
public List getLmtInf() {
if (lmtInf == null) {
lmtInf = new ArrayList();
}
return this.lmtInf;
}
/**
* Gets the value of the lqdtyInf property.
*
* @return
* possible object is
* {@link LiquidityDetails1 }
*
*/
public LiquidityDetails1 getLqdtyInf() {
return lqdtyInf;
}
/**
* Sets the value of the lqdtyInf property.
*
* @param value
* allowed object is
* {@link LiquidityDetails1 }
*
*/
public AccountLiquidityReport1 setLqdtyInf(LiquidityDetails1 value) {
this.lqdtyInf = value;
return this;
}
/**
* Gets the value of the arrstInf property.
*
* @return
* possible object is
* {@link ArrestedFunds1 }
*
*/
public ArrestedFunds1 getArrstInf() {
return arrstInf;
}
/**
* Sets the value of the arrstInf property.
*
* @param value
* allowed object is
* {@link ArrestedFunds1 }
*
*/
public AccountLiquidityReport1 setArrstInf(ArrestedFunds1 value) {
this.arrstInf = value;
return this;
}
/**
* Gets the value of the dbtQdTxs 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 JAXB object.
* This is why there is not a set
method for the dbtQdTxs property.
*
*
* For example, to add a new item, do as follows:
*
* getDbtQdTxs().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link QueuedTransactionsReport1 }
*
*
*/
public List getDbtQdTxs() {
if (dbtQdTxs == null) {
dbtQdTxs = new ArrayList();
}
return this.dbtQdTxs;
}
/**
* Gets the value of the cdtQdTxs 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 JAXB object.
* This is why there is not a set
method for the cdtQdTxs property.
*
*
* For example, to add a new item, do as follows:
*
* getCdtQdTxs().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link QueuedTransactionsReport1 }
*
*
*/
public List getCdtQdTxs() {
if (cdtQdTxs == null) {
cdtQdTxs = new ArrayList();
}
return this.cdtQdTxs;
}
@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 lmtInf list.
* @see #getLmtInf()
*
*/
public AccountLiquidityReport1 addLmtInf(AccountLimits1 lmtInf) {
getLmtInf().add(lmtInf);
return this;
}
/**
* Adds a new item to the dbtQdTxs list.
* @see #getDbtQdTxs()
*
*/
public AccountLiquidityReport1 addDbtQdTxs(QueuedTransactionsReport1 dbtQdTxs) {
getDbtQdTxs().add(dbtQdTxs);
return this;
}
/**
* Adds a new item to the cdtQdTxs list.
* @see #getCdtQdTxs()
*
*/
public AccountLiquidityReport1 addCdtQdTxs(QueuedTransactionsReport1 cdtQdTxs) {
getCdtQdTxs().add(cdtQdTxs);
return this;
}
}