com.prowidesoftware.swift.model.mx.dic.AcceptorConfigurationContent5 Maven / Gradle / Ivy
Show all versions of pw-iso20022 Show documentation
package com.prowidesoftware.swift.model.mx.dic;
import java.util.ArrayList;
import java.util.List;
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;
/**
* Content of the acceptor configuration.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AcceptorConfigurationContent5", propOrder = {
"rplcCfgtn",
"tmsPrtcolParams",
"acqrrPrtcolParams",
"mrchntParams",
"termnlParams",
"applParams",
"hstComParams",
"sctyParams"
})
public class AcceptorConfigurationContent5 {
@XmlElement(name = "RplcCfgtn")
protected Boolean rplcCfgtn;
@XmlElement(name = "TMSPrtcolParams")
protected List tmsPrtcolParams;
@XmlElement(name = "AcqrrPrtcolParams")
protected List acqrrPrtcolParams;
@XmlElement(name = "MrchntParams")
protected List mrchntParams;
@XmlElement(name = "TermnlParams")
protected List termnlParams;
@XmlElement(name = "ApplParams")
protected List applParams;
@XmlElement(name = "HstComParams")
protected List hstComParams;
@XmlElement(name = "SctyParams")
protected List sctyParams;
/**
* Gets the value of the rplcCfgtn property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isRplcCfgtn() {
return rplcCfgtn;
}
/**
* Sets the value of the rplcCfgtn property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public AcceptorConfigurationContent5 setRplcCfgtn(Boolean value) {
this.rplcCfgtn = value;
return this;
}
/**
* Gets the value of the tmsPrtcolParams property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the tmsPrtcolParams property.
*
*
* For example, to add a new item, do as follows:
*
* getTMSPrtcolParams().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TMSProtocolParameters2 }
*
*
*/
public List getTMSPrtcolParams() {
if (tmsPrtcolParams == null) {
tmsPrtcolParams = new ArrayList();
}
return this.tmsPrtcolParams;
}
/**
* Gets the value of the acqrrPrtcolParams property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the acqrrPrtcolParams property.
*
*
* For example, to add a new item, do as follows:
*
* getAcqrrPrtcolParams().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link AcquirerProtocolParameters9 }
*
*
*/
public List getAcqrrPrtcolParams() {
if (acqrrPrtcolParams == null) {
acqrrPrtcolParams = new ArrayList();
}
return this.acqrrPrtcolParams;
}
/**
* Gets the value of the mrchntParams property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the mrchntParams property.
*
*
* For example, to add a new item, do as follows:
*
* getMrchntParams().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link MerchantConfigurationParameters2 }
*
*
*/
public List getMrchntParams() {
if (mrchntParams == null) {
mrchntParams = new ArrayList();
}
return this.mrchntParams;
}
/**
* Gets the value of the termnlParams property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the termnlParams property.
*
*
* For example, to add a new item, do as follows:
*
* getTermnlParams().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link PaymentTerminalParameters3 }
*
*
*/
public List getTermnlParams() {
if (termnlParams == null) {
termnlParams = new ArrayList();
}
return this.termnlParams;
}
/**
* Gets the value of the applParams property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the applParams property.
*
*
* For example, to add a new item, do as follows:
*
* getApplParams().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ApplicationParameters5 }
*
*
*/
public List getApplParams() {
if (applParams == null) {
applParams = new ArrayList();
}
return this.applParams;
}
/**
* Gets the value of the hstComParams property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the hstComParams property.
*
*
* For example, to add a new item, do as follows:
*
* getHstComParams().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link HostCommunicationParameter4 }
*
*
*/
public List getHstComParams() {
if (hstComParams == null) {
hstComParams = new ArrayList();
}
return this.hstComParams;
}
/**
* Gets the value of the sctyParams property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the sctyParams property.
*
*
* For example, to add a new item, do as follows:
*
* getSctyParams().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SecurityParameters6 }
*
*
*/
public List getSctyParams() {
if (sctyParams == null) {
sctyParams = new ArrayList();
}
return this.sctyParams;
}
@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);
}
/**
* Adds a new item to the tMSPrtcolParams list.
* @see #getTMSPrtcolParams()
*
*/
public AcceptorConfigurationContent5 addTMSPrtcolParams(TMSProtocolParameters2 tMSPrtcolParams) {
getTMSPrtcolParams().add(tMSPrtcolParams);
return this;
}
/**
* Adds a new item to the acqrrPrtcolParams list.
* @see #getAcqrrPrtcolParams()
*
*/
public AcceptorConfigurationContent5 addAcqrrPrtcolParams(AcquirerProtocolParameters9 acqrrPrtcolParams) {
getAcqrrPrtcolParams().add(acqrrPrtcolParams);
return this;
}
/**
* Adds a new item to the mrchntParams list.
* @see #getMrchntParams()
*
*/
public AcceptorConfigurationContent5 addMrchntParams(MerchantConfigurationParameters2 mrchntParams) {
getMrchntParams().add(mrchntParams);
return this;
}
/**
* Adds a new item to the termnlParams list.
* @see #getTermnlParams()
*
*/
public AcceptorConfigurationContent5 addTermnlParams(PaymentTerminalParameters3 termnlParams) {
getTermnlParams().add(termnlParams);
return this;
}
/**
* Adds a new item to the applParams list.
* @see #getApplParams()
*
*/
public AcceptorConfigurationContent5 addApplParams(ApplicationParameters5 applParams) {
getApplParams().add(applParams);
return this;
}
/**
* Adds a new item to the hstComParams list.
* @see #getHstComParams()
*
*/
public AcceptorConfigurationContent5 addHstComParams(HostCommunicationParameter4 hstComParams) {
getHstComParams().add(hstComParams);
return this;
}
/**
* Adds a new item to the sctyParams list.
* @see #getSctyParams()
*
*/
public AcceptorConfigurationContent5 addSctyParams(SecurityParameters6 sctyParams) {
getSctyParams().add(sctyParams);
return this;
}
}