com.prowidesoftware.swift.model.mx.dic.Tsmt00900102 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pw-iso20022 Show documentation
Show all versions of pw-iso20022 Show documentation
Prowide Library for ISO 20022 messages
package com.prowidesoftware.swift.model.mx.dic;
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 BaselineAmendmentRequest message is sent by either party involved in a transaction to the matching application.
* The message is used to request the amendment of an established baseline.
* Usage
* The BaselineAmendmentRequest message can be sent to the matching application by either of the parties involved in a transaction established in the push-through mode to request the amendment of an established baseline.
* The matching application acknowledges the receipt of the amendment request by sending a DeltaReport message to the submitter of the BaselineAmendmentRequest message. It passes on the newly proposed baseline to the counterparty by sending a FullPushThroughReport message, a DeltaReport message and a pre-calculated BaselineReport message.
* The counterparty is expected to either accept or reject the amendment request by submitting an AmendmentAcceptance or AmendmentRejection message.
* or
* The BaselineAmendmentRequest message can be sent by the party involved in a transaction established in the lodge mode to the matching application to amend an established baseline.
* The matching application amends the baseline according to the BaselineAmendmentRequest message and confirms the execution of the request by sending a DeltaReport and calculated BaselineReport message to the requester of the amendment.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tsmt.009.001.02", propOrder = {
"reqId",
"txId",
"submitrTxRef",
"baseln"
})
public class Tsmt00900102 {
@XmlElement(name = "ReqId", required = true)
protected MessageIdentification1 reqId;
@XmlElement(name = "TxId", required = true)
protected SimpleIdentificationInformation txId;
@XmlElement(name = "SubmitrTxRef", required = true)
protected DocumentIdentification5 submitrTxRef;
@XmlElement(name = "Baseln", required = true)
protected Baseline2 baseln;
/**
* Gets the value of the reqId property.
*
* @return
* possible object is
* {@link MessageIdentification1 }
*
*/
public MessageIdentification1 getReqId() {
return reqId;
}
/**
* Sets the value of the reqId property.
*
* @param value
* allowed object is
* {@link MessageIdentification1 }
*
*/
public Tsmt00900102 setReqId(MessageIdentification1 value) {
this.reqId = 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 Tsmt00900102 setTxId(SimpleIdentificationInformation value) {
this.txId = value;
return this;
}
/**
* Gets the value of the submitrTxRef property.
*
* @return
* possible object is
* {@link DocumentIdentification5 }
*
*/
public DocumentIdentification5 getSubmitrTxRef() {
return submitrTxRef;
}
/**
* Sets the value of the submitrTxRef property.
*
* @param value
* allowed object is
* {@link DocumentIdentification5 }
*
*/
public Tsmt00900102 setSubmitrTxRef(DocumentIdentification5 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 Tsmt00900102 setBaseln(Baseline2 value) {
this.baseln = 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);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy