com.prowidesoftware.swift.model.mx.dic.RejectionReason43 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.XmlSchemaType;
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;
/**
* Provides reasons of rejecting transactions.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "RejectionReason43", propOrder = {
"txId",
"sts",
"dtldVldtnRule"
})
public class RejectionReason43 {
@XmlElement(name = "TxId", required = true)
protected TradeTransactionIdentification2 txId;
@XmlElement(name = "Sts", required = true)
@XmlSchemaType(name = "string")
protected ReportingMessageStatus1Code sts;
@XmlElement(name = "DtldVldtnRule")
protected GenericValidationRuleIdentification1 dtldVldtnRule;
/**
* Gets the value of the txId property.
*
* @return
* possible object is
* {@link TradeTransactionIdentification2 }
*
*/
public TradeTransactionIdentification2 getTxId() {
return txId;
}
/**
* Sets the value of the txId property.
*
* @param value
* allowed object is
* {@link TradeTransactionIdentification2 }
*
*/
public RejectionReason43 setTxId(TradeTransactionIdentification2 value) {
this.txId = value;
return this;
}
/**
* Gets the value of the sts property.
*
* @return
* possible object is
* {@link ReportingMessageStatus1Code }
*
*/
public ReportingMessageStatus1Code getSts() {
return sts;
}
/**
* Sets the value of the sts property.
*
* @param value
* allowed object is
* {@link ReportingMessageStatus1Code }
*
*/
public RejectionReason43 setSts(ReportingMessageStatus1Code value) {
this.sts = value;
return this;
}
/**
* Gets the value of the dtldVldtnRule property.
*
* @return
* possible object is
* {@link GenericValidationRuleIdentification1 }
*
*/
public GenericValidationRuleIdentification1 getDtldVldtnRule() {
return dtldVldtnRule;
}
/**
* Sets the value of the dtldVldtnRule property.
*
* @param value
* allowed object is
* {@link GenericValidationRuleIdentification1 }
*
*/
public RejectionReason43 setDtldVldtnRule(GenericValidationRuleIdentification1 value) {
this.dtldVldtnRule = 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