com.prowidesoftware.swift.model.mx.dic.Context4 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
The newest version!
package com.prowidesoftware.swift.model.mx.dic;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.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;
/**
* Context in which the card payment transaction is performed.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Context4", propOrder = {
"ptOfSvcCntxt",
"txCntxt",
"saleCntxt"
})
public class Context4 {
@XmlElement(name = "PtOfSvcCntxt")
protected PointOfServiceContext2 ptOfSvcCntxt;
@XmlElement(name = "TxCntxt", required = true)
protected TransactionContext3 txCntxt;
@XmlElement(name = "SaleCntxt")
protected SaleContext7 saleCntxt;
/**
* Gets the value of the ptOfSvcCntxt property.
*
* @return
* possible object is
* {@link PointOfServiceContext2 }
*
*/
public PointOfServiceContext2 getPtOfSvcCntxt() {
return ptOfSvcCntxt;
}
/**
* Sets the value of the ptOfSvcCntxt property.
*
* @param value
* allowed object is
* {@link PointOfServiceContext2 }
*
*/
public Context4 setPtOfSvcCntxt(PointOfServiceContext2 value) {
this.ptOfSvcCntxt = value;
return this;
}
/**
* Gets the value of the txCntxt property.
*
* @return
* possible object is
* {@link TransactionContext3 }
*
*/
public TransactionContext3 getTxCntxt() {
return txCntxt;
}
/**
* Sets the value of the txCntxt property.
*
* @param value
* allowed object is
* {@link TransactionContext3 }
*
*/
public Context4 setTxCntxt(TransactionContext3 value) {
this.txCntxt = value;
return this;
}
/**
* Gets the value of the saleCntxt property.
*
* @return
* possible object is
* {@link SaleContext7 }
*
*/
public SaleContext7 getSaleCntxt() {
return saleCntxt;
}
/**
* Sets the value of the saleCntxt property.
*
* @param value
* allowed object is
* {@link SaleContext7 }
*
*/
public Context4 setSaleCntxt(SaleContext7 value) {
this.saleCntxt = 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