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

com.prowidesoftware.swift.model.mx.dic.FullPushThroughReportV05 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;


/**
 * Scope
 * The FullPushThroughReport message is sent by the matching application to a party involved in a transaction.
 * This message is used to pass on information that the matching application has received from the submitter. The forwarded information can originate from an InitialBaselineSubmission or BaselineReSubmission or BaselineAmendmentRequest message.
 * Usage
 * The FullPushThroughReport message can be sent by the matching application to a party to convey
 * - the details of an InitialBaselineSubmission message that it has obtained,or
 * - the details of a BaselineResubmission message that it has obtained,or
 * - the details of a BaselineAmendmentRequest message that it has obtained.
 * 
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FullPushThroughReportV05", propOrder = {
    "rptId",
    "txId",
    "estblishdBaselnId",
    "txSts",
    "usrTxRef",
    "rptPurp",
    "pushdThrghBaseln",
    "buyrCtctPrsn",
    "sellrCtctPrsn",
    "buyrBkCtctPrsn",
    "sellrBkCtctPrsn",
    "othrBkCtctPrsn",
    "reqForActn"
})
public class FullPushThroughReportV05 {

    @XmlElement(name = "RptId", required = true)
    protected MessageIdentification1 rptId;
    @XmlElement(name = "TxId", required = true)
    protected SimpleIdentificationInformation txId;
    @XmlElement(name = "EstblishdBaselnId")
    protected DocumentIdentification3 estblishdBaselnId;
    @XmlElement(name = "TxSts", required = true)
    protected TransactionStatus4 txSts;
    @XmlElement(name = "UsrTxRef")
    protected List usrTxRef;
    @XmlElement(name = "RptPurp", required = true)
    protected ReportType1 rptPurp;
    @XmlElement(name = "PushdThrghBaseln", required = true)
    protected Baseline5 pushdThrghBaseln;
    @XmlElement(name = "BuyrCtctPrsn")
    protected List buyrCtctPrsn;
    @XmlElement(name = "SellrCtctPrsn")
    protected List sellrCtctPrsn;
    @XmlElement(name = "BuyrBkCtctPrsn")
    protected List buyrBkCtctPrsn;
    @XmlElement(name = "SellrBkCtctPrsn")
    protected List sellrBkCtctPrsn;
    @XmlElement(name = "OthrBkCtctPrsn")
    protected List othrBkCtctPrsn;
    @XmlElement(name = "ReqForActn")
    protected PendingActivity2 reqForActn;

    /**
     * Gets the value of the rptId property.
     * 
     * @return
     *     possible object is
     *     {@link MessageIdentification1 }
     *     
     */
    public MessageIdentification1 getRptId() {
        return rptId;
    }

    /**
     * Sets the value of the rptId property.
     * 
     * @param value
     *     allowed object is
     *     {@link MessageIdentification1 }
     *     
     */
    public FullPushThroughReportV05 setRptId(MessageIdentification1 value) {
        this.rptId = value;
        return this;
    }

    /**
     * Gets the value of the txId property.
     * 
     * @return
     *     possible object is
     *     {@link SimpleIdentificationInformation }
     *     
     */
    public SimpleIdentificationInformation getTxId() {
        return txId;
    }

    /**
     * Sets the value of the txId property.
     * 
     * @param value
     *     allowed object is
     *     {@link SimpleIdentificationInformation }
     *     
     */
    public FullPushThroughReportV05 setTxId(SimpleIdentificationInformation value) {
        this.txId = value;
        return this;
    }

    /**
     * Gets the value of the estblishdBaselnId property.
     * 
     * @return
     *     possible object is
     *     {@link DocumentIdentification3 }
     *     
     */
    public DocumentIdentification3 getEstblishdBaselnId() {
        return estblishdBaselnId;
    }

    /**
     * Sets the value of the estblishdBaselnId property.
     * 
     * @param value
     *     allowed object is
     *     {@link DocumentIdentification3 }
     *     
     */
    public FullPushThroughReportV05 setEstblishdBaselnId(DocumentIdentification3 value) {
        this.estblishdBaselnId = value;
        return this;
    }

    /**
     * Gets the value of the txSts property.
     * 
     * @return
     *     possible object is
     *     {@link TransactionStatus4 }
     *     
     */
    public TransactionStatus4 getTxSts() {
        return txSts;
    }

    /**
     * Sets the value of the txSts property.
     * 
     * @param value
     *     allowed object is
     *     {@link TransactionStatus4 }
     *     
     */
    public FullPushThroughReportV05 setTxSts(TransactionStatus4 value) {
        this.txSts = value;
        return this;
    }

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

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

     *    getUsrTxRef().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link DocumentIdentification5 } * * */ public List getUsrTxRef() { if (usrTxRef == null) { usrTxRef = new ArrayList(); } return this.usrTxRef; } /** * Gets the value of the rptPurp property. * * @return * possible object is * {@link ReportType1 } * */ public ReportType1 getRptPurp() { return rptPurp; } /** * Sets the value of the rptPurp property. * * @param value * allowed object is * {@link ReportType1 } * */ public FullPushThroughReportV05 setRptPurp(ReportType1 value) { this.rptPurp = value; return this; } /** * Gets the value of the pushdThrghBaseln property. * * @return * possible object is * {@link Baseline5 } * */ public Baseline5 getPushdThrghBaseln() { return pushdThrghBaseln; } /** * Sets the value of the pushdThrghBaseln property. * * @param value * allowed object is * {@link Baseline5 } * */ public FullPushThroughReportV05 setPushdThrghBaseln(Baseline5 value) { this.pushdThrghBaseln = value; return this; } /** * Gets the value of the buyrCtctPrsn 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 buyrCtctPrsn property. * *

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

     *    getBuyrCtctPrsn().add(newItem);
     * 
* * *

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

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

     *    getSellrCtctPrsn().add(newItem);
     * 
* * *

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

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

     *    getBuyrBkCtctPrsn().add(newItem);
     * 
* * *

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

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

     *    getSellrBkCtctPrsn().add(newItem);
     * 
* * *

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

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

     *    getOthrBkCtctPrsn().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ContactIdentification3 } * * */ public List getOthrBkCtctPrsn() { if (othrBkCtctPrsn == null) { othrBkCtctPrsn = new ArrayList(); } return this.othrBkCtctPrsn; } /** * Gets the value of the reqForActn property. * * @return * possible object is * {@link PendingActivity2 } * */ public PendingActivity2 getReqForActn() { return reqForActn; } /** * Sets the value of the reqForActn property. * * @param value * allowed object is * {@link PendingActivity2 } * */ public FullPushThroughReportV05 setReqForActn(PendingActivity2 value) { this.reqForActn = 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 usrTxRef list. * @see #getUsrTxRef() * */ public FullPushThroughReportV05 addUsrTxRef(DocumentIdentification5 usrTxRef) { getUsrTxRef().add(usrTxRef); return this; } /** * Adds a new item to the buyrCtctPrsn list. * @see #getBuyrCtctPrsn() * */ public FullPushThroughReportV05 addBuyrCtctPrsn(ContactIdentification1 buyrCtctPrsn) { getBuyrCtctPrsn().add(buyrCtctPrsn); return this; } /** * Adds a new item to the sellrCtctPrsn list. * @see #getSellrCtctPrsn() * */ public FullPushThroughReportV05 addSellrCtctPrsn(ContactIdentification1 sellrCtctPrsn) { getSellrCtctPrsn().add(sellrCtctPrsn); return this; } /** * Adds a new item to the buyrBkCtctPrsn list. * @see #getBuyrBkCtctPrsn() * */ public FullPushThroughReportV05 addBuyrBkCtctPrsn(ContactIdentification1 buyrBkCtctPrsn) { getBuyrBkCtctPrsn().add(buyrBkCtctPrsn); return this; } /** * Adds a new item to the sellrBkCtctPrsn list. * @see #getSellrBkCtctPrsn() * */ public FullPushThroughReportV05 addSellrBkCtctPrsn(ContactIdentification1 sellrBkCtctPrsn) { getSellrBkCtctPrsn().add(sellrBkCtctPrsn); return this; } /** * Adds a new item to the othrBkCtctPrsn list. * @see #getOthrBkCtctPrsn() * */ public FullPushThroughReportV05 addOthrBkCtctPrsn(ContactIdentification3 othrBkCtctPrsn) { getOthrBkCtctPrsn().add(othrBkCtctPrsn); return this; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy