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

com.prowidesoftware.swift.model.mx.dic.FundParameters4 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.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 Processing Passport (FPP).
 * 
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FundParameters4", propOrder = {
    "finInstrmDtls",
    "fndMgmtCpny",
    "dtFr",
    "ctryOfDmcl",
    "regdDstrbtnCtry"
})
public class FundParameters4 {

    @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 String 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 FinancialInstrument17 } * * */ 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 PartyIdentification2Choice } * * */ 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 FundParameters4 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 FundParameters4 setCtryOfDmcl(String value) { this.ctryOfDmcl = value; return this; } /** * Gets the value of the regdDstrbtnCtry property. * * @return * possible object is * {@link String } * */ public String getRegdDstrbtnCtry() { return regdDstrbtnCtry; } /** * Sets the value of the regdDstrbtnCtry property. * * @param value * allowed object is * {@link String } * */ public FundParameters4 setRegdDstrbtnCtry(String value) { this.regdDstrbtnCtry = 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); } /** * Adds a new item to the finInstrmDtls list. * @see #getFinInstrmDtls() * */ public FundParameters4 addFinInstrmDtls(FinancialInstrument17 finInstrmDtls) { getFinInstrmDtls().add(finInstrmDtls); return this; } /** * Adds a new item to the fndMgmtCpny list. * @see #getFndMgmtCpny() * */ public FundParameters4 addFndMgmtCpny(PartyIdentification2Choice fndMgmtCpny) { getFndMgmtCpny().add(fndMgmtCpny); return this; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy