com.prowidesoftware.swift.model.mx.dic.AcquirerProtocolExchangeBehavior2 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.XmlSchemaType;
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;
/**
* Acceptor parameters dedicated to the acquirer protocol.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AcquirerProtocolExchangeBehavior2", propOrder = {
"finCaptr",
"btchTrf",
"cmpltnXchg",
"cxlXchg"
})
public class AcquirerProtocolExchangeBehavior2 {
@XmlElement(name = "FinCaptr", required = true)
@XmlSchemaType(name = "string")
protected FinancialCapture1Code finCaptr;
@XmlElement(name = "BtchTrf")
protected ExchangeConfiguration9 btchTrf;
@XmlElement(name = "CmpltnXchg")
protected ExchangeConfiguration10 cmpltnXchg;
@XmlElement(name = "CxlXchg")
@XmlSchemaType(name = "string")
protected CancellationProcess2Code cxlXchg;
/**
* Gets the value of the finCaptr property.
*
* @return
* possible object is
* {@link FinancialCapture1Code }
*
*/
public FinancialCapture1Code getFinCaptr() {
return finCaptr;
}
/**
* Sets the value of the finCaptr property.
*
* @param value
* allowed object is
* {@link FinancialCapture1Code }
*
*/
public AcquirerProtocolExchangeBehavior2 setFinCaptr(FinancialCapture1Code value) {
this.finCaptr = value;
return this;
}
/**
* Gets the value of the btchTrf property.
*
* @return
* possible object is
* {@link ExchangeConfiguration9 }
*
*/
public ExchangeConfiguration9 getBtchTrf() {
return btchTrf;
}
/**
* Sets the value of the btchTrf property.
*
* @param value
* allowed object is
* {@link ExchangeConfiguration9 }
*
*/
public AcquirerProtocolExchangeBehavior2 setBtchTrf(ExchangeConfiguration9 value) {
this.btchTrf = value;
return this;
}
/**
* Gets the value of the cmpltnXchg property.
*
* @return
* possible object is
* {@link ExchangeConfiguration10 }
*
*/
public ExchangeConfiguration10 getCmpltnXchg() {
return cmpltnXchg;
}
/**
* Sets the value of the cmpltnXchg property.
*
* @param value
* allowed object is
* {@link ExchangeConfiguration10 }
*
*/
public AcquirerProtocolExchangeBehavior2 setCmpltnXchg(ExchangeConfiguration10 value) {
this.cmpltnXchg = value;
return this;
}
/**
* Gets the value of the cxlXchg property.
*
* @return
* possible object is
* {@link CancellationProcess2Code }
*
*/
public CancellationProcess2Code getCxlXchg() {
return cxlXchg;
}
/**
* Sets the value of the cxlXchg property.
*
* @param value
* allowed object is
* {@link CancellationProcess2Code }
*
*/
public AcquirerProtocolExchangeBehavior2 setCxlXchg(CancellationProcess2Code value) {
this.cxlXchg = 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