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

com.prowidesoftware.swift.model.mx.dic.FundParameters5 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
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;


/**
 * Parameters required to request a fund reference data report.
 * 
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FundParameters5", propOrder = {
    "finInstrmDtls",
    "fndMgmtCpny",
    "dtFr",
    "ctryOfDmcl",
    "regdDstrbtnCtry"
})
public class FundParameters5 {

    @XmlElement(name = "FinInstrmDtls")
    protected List finInstrmDtls;
    @XmlElement(name = "FndMgmtCpny")
    protected List fndMgmtCpny;
    @XmlElement(name = "DtFr")
    @XmlSchemaType(name = "date")
    protected XMLGregorianCalendar dtFr;
    @XmlElement(name = "CtryOfDmcl")
    protected String ctryOfDmcl;
    @XmlElement(name = "RegdDstrbtnCtry")
    protected List regdDstrbtnCtry;

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

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

     *    getFinInstrmDtls().add(newItem);
     * 
* * *

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

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

     *    getFndMgmtCpny().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link PartyIdentification139 } * * */ public List getFndMgmtCpny() { if (fndMgmtCpny == null) { fndMgmtCpny = new ArrayList(); } return this.fndMgmtCpny; } /** * Gets the value of the dtFr property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getDtFr() { return dtFr; } /** * Sets the value of the dtFr property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public FundParameters5 setDtFr(XMLGregorianCalendar value) { this.dtFr = value; return this; } /** * Gets the value of the ctryOfDmcl property. * * @return * possible object is * {@link String } * */ public String getCtryOfDmcl() { return ctryOfDmcl; } /** * Sets the value of the ctryOfDmcl property. * * @param value * allowed object is * {@link String } * */ public FundParameters5 setCtryOfDmcl(String value) { this.ctryOfDmcl = value; return this; } /** * Gets the value of the regdDstrbtnCtry 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 regdDstrbtnCtry property. * *

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

     *    getRegdDstrbtnCtry().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getRegdDstrbtnCtry() { if (regdDstrbtnCtry == null) { regdDstrbtnCtry = new ArrayList(); } return this.regdDstrbtnCtry; } @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 finInstrmDtls list. * @see #getFinInstrmDtls() * */ public FundParameters5 addFinInstrmDtls(FinancialInstrument71 finInstrmDtls) { getFinInstrmDtls().add(finInstrmDtls); return this; } /** * Adds a new item to the fndMgmtCpny list. * @see #getFndMgmtCpny() * */ public FundParameters5 addFndMgmtCpny(PartyIdentification139 fndMgmtCpny) { getFndMgmtCpny().add(fndMgmtCpny); return this; } /** * Adds a new item to the regdDstrbtnCtry list. * @see #getRegdDstrbtnCtry() * */ public FundParameters5 addRegdDstrbtnCtry(String regdDstrbtnCtry) { getRegdDstrbtnCtry().add(regdDstrbtnCtry); return this; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy