
com.prowidesoftware.swift.model.mx.dic.Tsmt01200102 Maven / Gradle / Ivy
Show all versions of pw-iso20022 Show documentation
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 BaselineReSubmission message is sent by either the counterparty or the initiator of a transaction (baseline) to the matching application.
* This message is used by the counterparty to respond on the registration of a push-through transaction in the matching application or by the initiator or counterparty to re-send earlier mis-matched baseline information.
* Usage
* The BaselineReSubmission message can be sent by the counterparty of a transaction to the matching application in response to a FullPushThroughReport message received from the matching application conveying the details of an InitialBaselineSubmission message. The objective of the BaselineReSubmission message sent in the outlined scenario is to achieve a successful match of two baseline initiation messages in order to establish a transaction in the matching application.
* or
* The BaselineReSubmission message can be sent by the initiator of a transaction to the matching application in response to a BaselineMatchReport message indicating mis-matches. The objective of the BaselineReSubmission message sent in the outlined scenario is to correct an InitialBaselineSubmission or BaselineReSubmission message submitted earlier in order to achieve the establishment of a transaction in the matching application.
* or
* The BaselineReSubmission message can be sent by the counterparty of a transaction to the matching application in response to a BaselineMatchReport message indicating mis-matches. The objective of the BaselineReSubmission message sent in the outlined scenario is to correct a BaselineReSubmission message submitted earlier in order to achieve the establishment of a transaction in the matching application.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tsmt.012.001.02", propOrder = {
"submissnId",
"txId",
"submitrTxRef",
"baseln",
"buyrCtctPrsn",
"sellrCtctPrsn",
"buyrBkCtctPrsn",
"sellrBkCtctPrsn",
"bllToCtctPrsn",
"shipToCtctPrsn",
"consgnCtctPrsn"
})
public class Tsmt01200102 {
@XmlElement(name = "SubmissnId", required = true)
protected MessageIdentification1 submissnId;
@XmlElement(name = "TxId", required = true)
protected SimpleIdentificationInformation txId;
@XmlElement(name = "SubmitrTxRef", required = true)
protected SimpleIdentificationInformation submitrTxRef;
@XmlElement(name = "Baseln", required = true)
protected Baseline2 baseln;
@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 = "BllToCtctPrsn")
protected List bllToCtctPrsn;
@XmlElement(name = "ShipToCtctPrsn")
protected List shipToCtctPrsn;
@XmlElement(name = "ConsgnCtctPrsn")
protected List consgnCtctPrsn;
/**
* Gets the value of the submissnId property.
*
* @return
* possible object is
* {@link MessageIdentification1 }
*
*/
public MessageIdentification1 getSubmissnId() {
return submissnId;
}
/**
* Sets the value of the submissnId property.
*
* @param value
* allowed object is
* {@link MessageIdentification1 }
*
*/
public Tsmt01200102 setSubmissnId(MessageIdentification1 value) {
this.submissnId = 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 Tsmt01200102 setTxId(SimpleIdentificationInformation value) {
this.txId = value;
return this;
}
/**
* Gets the value of the submitrTxRef property.
*
* @return
* possible object is
* {@link SimpleIdentificationInformation }
*
*/
public SimpleIdentificationInformation getSubmitrTxRef() {
return submitrTxRef;
}
/**
* Sets the value of the submitrTxRef property.
*
* @param value
* allowed object is
* {@link SimpleIdentificationInformation }
*
*/
public Tsmt01200102 setSubmitrTxRef(SimpleIdentificationInformation value) {
this.submitrTxRef = value;
return this;
}
/**
* Gets the value of the baseln property.
*
* @return
* possible object is
* {@link Baseline2 }
*
*/
public Baseline2 getBaseln() {
return baseln;
}
/**
* Sets the value of the baseln property.
*
* @param value
* allowed object is
* {@link Baseline2 }
*
*/
public Tsmt01200102 setBaseln(Baseline2 value) {
this.baseln = 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 bllToCtctPrsn 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 bllToCtctPrsn property.
*
*
* For example, to add a new item, do as follows:
*
* getBllToCtctPrsn().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ContactIdentification1 }
*
*
*/
public List getBllToCtctPrsn() {
if (bllToCtctPrsn == null) {
bllToCtctPrsn = new ArrayList();
}
return this.bllToCtctPrsn;
}
/**
* Gets the value of the shipToCtctPrsn 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 shipToCtctPrsn property.
*
*
* For example, to add a new item, do as follows:
*
* getShipToCtctPrsn().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ContactIdentification1 }
*
*
*/
public List getShipToCtctPrsn() {
if (shipToCtctPrsn == null) {
shipToCtctPrsn = new ArrayList();
}
return this.shipToCtctPrsn;
}
/**
* Gets the value of the consgnCtctPrsn 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 consgnCtctPrsn property.
*
*
* For example, to add a new item, do as follows:
*
* getConsgnCtctPrsn().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ContactIdentification1 }
*
*
*/
public List getConsgnCtctPrsn() {
if (consgnCtctPrsn == null) {
consgnCtctPrsn = new ArrayList();
}
return this.consgnCtctPrsn;
}
@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 buyrCtctPrsn list.
* @see #getBuyrCtctPrsn()
*
*/
public Tsmt01200102 addBuyrCtctPrsn(ContactIdentification1 buyrCtctPrsn) {
getBuyrCtctPrsn().add(buyrCtctPrsn);
return this;
}
/**
* Adds a new item to the sellrCtctPrsn list.
* @see #getSellrCtctPrsn()
*
*/
public Tsmt01200102 addSellrCtctPrsn(ContactIdentification1 sellrCtctPrsn) {
getSellrCtctPrsn().add(sellrCtctPrsn);
return this;
}
/**
* Adds a new item to the buyrBkCtctPrsn list.
* @see #getBuyrBkCtctPrsn()
*
*/
public Tsmt01200102 addBuyrBkCtctPrsn(ContactIdentification1 buyrBkCtctPrsn) {
getBuyrBkCtctPrsn().add(buyrBkCtctPrsn);
return this;
}
/**
* Adds a new item to the sellrBkCtctPrsn list.
* @see #getSellrBkCtctPrsn()
*
*/
public Tsmt01200102 addSellrBkCtctPrsn(ContactIdentification1 sellrBkCtctPrsn) {
getSellrBkCtctPrsn().add(sellrBkCtctPrsn);
return this;
}
/**
* Adds a new item to the bllToCtctPrsn list.
* @see #getBllToCtctPrsn()
*
*/
public Tsmt01200102 addBllToCtctPrsn(ContactIdentification1 bllToCtctPrsn) {
getBllToCtctPrsn().add(bllToCtctPrsn);
return this;
}
/**
* Adds a new item to the shipToCtctPrsn list.
* @see #getShipToCtctPrsn()
*
*/
public Tsmt01200102 addShipToCtctPrsn(ContactIdentification1 shipToCtctPrsn) {
getShipToCtctPrsn().add(shipToCtctPrsn);
return this;
}
/**
* Adds a new item to the consgnCtctPrsn list.
* @see #getConsgnCtctPrsn()
*
*/
public Tsmt01200102 addConsgnCtctPrsn(ContactIdentification1 consgnCtctPrsn) {
getConsgnCtctPrsn().add(consgnCtctPrsn);
return this;
}
}