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

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

There is a newer version: SRU2024-10.2.6
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;


/**
 * Scope
 * The AccountRequestAcknowledgement message is sent from a financial institution to an organisation. This message is sent in response to a request message from the organisation. It is sent after the request has been validated from an authentication and authorization point of view. The business content has not yet been validated at this stage.
 * Usage
 * This message should only be sent after the request has been validated from an authentication and authorization point of view.
 * 
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AccountRequestAcknowledgementV01", propOrder = {
    "refs",
    "acctId",
    "orgId",
    "acctSvcrId",
    "dgtlSgntr"
})
public class AccountRequestAcknowledgementV01 {

    @XmlElement(name = "Refs", required = true)
    protected References5 refs;
    @XmlElement(name = "AcctId")
    protected List acctId;
    @XmlElement(name = "OrgId", required = true)
    protected List orgId;
    @XmlElement(name = "AcctSvcrId", required = true)
    protected BranchAndFinancialInstitutionIdentification4 acctSvcrId;
    @XmlElement(name = "DgtlSgntr")
    protected List dgtlSgntr;

    /**
     * Gets the value of the refs property.
     * 
     * @return
     *     possible object is
     *     {@link References5 }
     *     
     */
    public References5 getRefs() {
        return refs;
    }

    /**
     * Sets the value of the refs property.
     * 
     * @param value
     *     allowed object is
     *     {@link References5 }
     *     
     */
    public AccountRequestAcknowledgementV01 setRefs(References5 value) {
        this.refs = value;
        return this;
    }

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

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

     *    getAcctId().add(newItem);
     * 
* * *

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

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

     *    getOrgId().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link OrganisationIdentification6 } * * */ public List getOrgId() { if (orgId == null) { orgId = new ArrayList(); } return this.orgId; } /** * Gets the value of the acctSvcrId property. * * @return * possible object is * {@link BranchAndFinancialInstitutionIdentification4 } * */ public BranchAndFinancialInstitutionIdentification4 getAcctSvcrId() { return acctSvcrId; } /** * Sets the value of the acctSvcrId property. * * @param value * allowed object is * {@link BranchAndFinancialInstitutionIdentification4 } * */ public AccountRequestAcknowledgementV01 setAcctSvcrId(BranchAndFinancialInstitutionIdentification4 value) { this.acctSvcrId = value; return this; } /** * Gets the value of the dgtlSgntr 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 dgtlSgntr property. * *

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

     *    getDgtlSgntr().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link PartyAndSignature1 } * * */ public List getDgtlSgntr() { if (dgtlSgntr == null) { dgtlSgntr = new ArrayList(); } return this.dgtlSgntr; } @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 acctId list. * @see #getAcctId() * */ public AccountRequestAcknowledgementV01 addAcctId(AccountForAction1 acctId) { getAcctId().add(acctId); return this; } /** * Adds a new item to the orgId list. * @see #getOrgId() * */ public AccountRequestAcknowledgementV01 addOrgId(OrganisationIdentification6 orgId) { getOrgId().add(orgId); return this; } /** * Adds a new item to the dgtlSgntr list. * @see #getDgtlSgntr() * */ public AccountRequestAcknowledgementV01 addDgtlSgntr(PartyAndSignature1 dgtlSgntr) { getDgtlSgntr().add(dgtlSgntr); return this; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy