com.prowidesoftware.swift.model.mx.dic.Tsmt02000101 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 MisMatchAcceptance message is sent by the party requested to accept or reject data set mis-matches to the matching application.
* This message is used to accept mis-matches between data sets and the related baseline.
* Usage
* The MisMatchAcceptance message can be sent by the party requested to accept or reject data set mis-matches to inform that it accepts the data sets.
* The message can be sent in response to a DataSetMatchReport message conveying mis-matches.
* The information about the acceptance of the mis-matched data sets will be forwarded by the matching application to the submitter of the data sets by a MisMatchAcceptanceNotification message.
* The rejection of mis-matched data sets can be achieved by sending a MisMatchRejection message.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tsmt.020.001.01", propOrder = {
"accptncId",
"txId",
"submitrTxRef",
"dataSetMtchRptRef"
})
public class Tsmt02000101 {
@XmlElement(name = "AccptncId", required = true)
protected MessageIdentification1 accptncId;
@XmlElement(name = "TxId", required = true)
protected SimpleIdentificationInformation txId;
@XmlElement(name = "SubmitrTxRef", required = true)
protected DocumentIdentification5 submitrTxRef;
@XmlElement(name = "DataSetMtchRptRef", required = true)
protected MessageIdentification1 dataSetMtchRptRef;
/**
* Gets the value of the accptncId property.
*
* @return
* possible object is
* {@link MessageIdentification1 }
*
*/
public MessageIdentification1 getAccptncId() {
return accptncId;
}
/**
* Sets the value of the accptncId property.
*
* @param value
* allowed object is
* {@link MessageIdentification1 }
*
*/
public Tsmt02000101 setAccptncId(MessageIdentification1 value) {
this.accptncId = 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 Tsmt02000101 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 Tsmt02000101 setSubmitrTxRef(DocumentIdentification5 value) {
this.submitrTxRef = value;
return this;
}
/**
* Gets the value of the dataSetMtchRptRef property.
*
* @return
* possible object is
* {@link MessageIdentification1 }
*
*/
public MessageIdentification1 getDataSetMtchRptRef() {
return dataSetMtchRptRef;
}
/**
* Sets the value of the dataSetMtchRptRef property.
*
* @param value
* allowed object is
* {@link MessageIdentification1 }
*
*/
public Tsmt02000101 setDataSetMtchRptRef(MessageIdentification1 value) {
this.dataSetMtchRptRef = 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