All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.prowidesoftware.swift.model.mx.dic.CollateralResponse1 Maven / Gradle / Ivy

There is a newer version: SRU2024-10.2.4
Show newest version

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;


/**
 * Provides additional information on the collateral proposal(s), that is either in cash, securities or other types.
 * 
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CollateralResponse1", propOrder = {
    "sctiesCollRspn",
    "cshCollRspn",
    "othrCollRspn"
})
public class CollateralResponse1 {

    @XmlElement(name = "SctiesCollRspn")
    protected List sctiesCollRspn;
    @XmlElement(name = "CshCollRspn")
    protected List cshCollRspn;
    @XmlElement(name = "OthrCollRspn")
    protected List othrCollRspn;

    /**
     * Gets the value of the sctiesCollRspn 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 sctiesCollRspn property. * *

* For example, to add a new item, do as follows: *

     *    getSctiesCollRspn().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SecuritiesCollateralResponse1 } * * */ public List getSctiesCollRspn() { if (sctiesCollRspn == null) { sctiesCollRspn = new ArrayList(); } return this.sctiesCollRspn; } /** * Gets the value of the cshCollRspn 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 cshCollRspn property. * *

* For example, to add a new item, do as follows: *

     *    getCshCollRspn().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link CashCollateralResponse1 } * * */ public List getCshCollRspn() { if (cshCollRspn == null) { cshCollRspn = new ArrayList(); } return this.cshCollRspn; } /** * Gets the value of the othrCollRspn 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 othrCollRspn property. * *

* For example, to add a new item, do as follows: *

     *    getOthrCollRspn().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link OtherCollateralResponse1 } * * */ public List getOthrCollRspn() { if (othrCollRspn == null) { othrCollRspn = new ArrayList(); } return this.othrCollRspn; } @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 sctiesCollRspn list. * @see #getSctiesCollRspn() * */ public CollateralResponse1 addSctiesCollRspn(SecuritiesCollateralResponse1 sctiesCollRspn) { getSctiesCollRspn().add(sctiesCollRspn); return this; } /** * Adds a new item to the cshCollRspn list. * @see #getCshCollRspn() * */ public CollateralResponse1 addCshCollRspn(CashCollateralResponse1 cshCollRspn) { getCshCollRspn().add(cshCollRspn); return this; } /** * Adds a new item to the othrCollRspn list. * @see #getOthrCollRspn() * */ public CollateralResponse1 addOthrCollRspn(OtherCollateralResponse1 othrCollRspn) { getOthrCollRspn().add(othrCollRspn); return this; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy