All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.prowidesoftware.swift.model.mx.dic.AcceptorConfigurationContent3 Maven / Gradle / Ivy

The newest version!

package com.prowidesoftware.swift.model.mx.dic;

import java.util.ArrayList;
import java.util.List;
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;


/**
 * Content of the acceptor configuration.
 * 
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AcceptorConfigurationContent3", propOrder = {
    "acqrrPrtcolParams",
    "mrchntParams",
    "termnlParams",
    "applParams",
    "hstComParams",
    "sctyParams"
})
public class AcceptorConfigurationContent3 {

    @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 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 Jakarta XML Binding object. * This is why there is not a {@code 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 AcquirerProtocolParameters6 } * * * @return * The value of the acqrrPrtcolParams property. */ 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 Jakarta XML Binding object. * This is why there is not a {@code 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 * byte[] * * @return * The value of the mrchntParams property. */ 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 Jakarta XML Binding object. * This is why there is not a {@code 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 PaymentTerminalParameters1 } * * * @return * The value of the termnlParams property. */ 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 Jakarta XML Binding object. * This is why there is not a {@code 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 ApplicationParameters3 } * * * @return * The value of the applParams property. */ 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 Jakarta XML Binding object. * This is why there is not a {@code 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 HostCommunicationParameter2 } * * * @return * The value of the hstComParams property. */ 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 Jakarta XML Binding object. * This is why there is not a {@code 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 SecurityParameters2 } * * * @return * The value of the sctyParams property. */ 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 acqrrPrtcolParams list. * @see #getAcqrrPrtcolParams() * */ public AcceptorConfigurationContent3 addAcqrrPrtcolParams(AcquirerProtocolParameters6 acqrrPrtcolParams) { getAcqrrPrtcolParams().add(acqrrPrtcolParams); return this; } /** * Adds a new item to the mrchntParams list. * @see #getMrchntParams() * */ public AcceptorConfigurationContent3 addMrchntParams(byte[] mrchntParams) { getMrchntParams().add(mrchntParams); return this; } /** * Adds a new item to the termnlParams list. * @see #getTermnlParams() * */ public AcceptorConfigurationContent3 addTermnlParams(PaymentTerminalParameters1 termnlParams) { getTermnlParams().add(termnlParams); return this; } /** * Adds a new item to the applParams list. * @see #getApplParams() * */ public AcceptorConfigurationContent3 addApplParams(ApplicationParameters3 applParams) { getApplParams().add(applParams); return this; } /** * Adds a new item to the hstComParams list. * @see #getHstComParams() * */ public AcceptorConfigurationContent3 addHstComParams(HostCommunicationParameter2 hstComParams) { getHstComParams().add(hstComParams); return this; } /** * Adds a new item to the sctyParams list. * @see #getSctyParams() * */ public AcceptorConfigurationContent3 addSctyParams(SecurityParameters2 sctyParams) { getSctyParams().add(sctyParams); return this; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy