com.prowidesoftware.swift.model.mx.dic.ATMExceptionAcknowledgement1 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;
/**
* Information related to the acknowledgement of an ATM exception.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ATMExceptionAcknowledgement1", propOrder = {
"atm",
"cntxt",
"tx"
})
public class ATMExceptionAcknowledgement1 {
@XmlElement(name = "ATM", required = true)
protected AutomatedTellerMachine3 atm;
@XmlElement(name = "Cntxt", required = true)
protected ATMContext20 cntxt;
@XmlElement(name = "Tx", required = true)
protected ATMTransaction28 tx;
/**
* Gets the value of the atm property.
*
* @return
* possible object is
* {@link AutomatedTellerMachine3 }
*
*/
public AutomatedTellerMachine3 getATM() {
return atm;
}
/**
* Sets the value of the atm property.
*
* @param value
* allowed object is
* {@link AutomatedTellerMachine3 }
*
*/
public ATMExceptionAcknowledgement1 setATM(AutomatedTellerMachine3 value) {
this.atm = value;
return this;
}
/**
* Gets the value of the cntxt property.
*
* @return
* possible object is
* {@link ATMContext20 }
*
*/
public ATMContext20 getCntxt() {
return cntxt;
}
/**
* Sets the value of the cntxt property.
*
* @param value
* allowed object is
* {@link ATMContext20 }
*
*/
public ATMExceptionAcknowledgement1 setCntxt(ATMContext20 value) {
this.cntxt = value;
return this;
}
/**
* Gets the value of the tx property.
*
* @return
* possible object is
* {@link ATMTransaction28 }
*
*/
public ATMTransaction28 getTx() {
return tx;
}
/**
* Sets the value of the tx property.
*
* @param value
* allowed object is
* {@link ATMTransaction28 }
*
*/
public ATMExceptionAcknowledgement1 setTx(ATMTransaction28 value) {
this.tx = 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