com.prowidesoftware.swift.model.mx.dic.TerminalManagementDataSet19 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.XmlSchemaType;
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;
/**
* Data set containing the acceptor parameters of a point of interaction (POI).
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TerminalManagementDataSet19", propOrder = {
"id",
"seqCntr",
"poiId",
"cfgtnScp",
"cntt"
})
public class TerminalManagementDataSet19 {
@XmlElement(name = "Id", required = true)
protected DataSetIdentification6 id;
@XmlElement(name = "SeqCntr")
protected String seqCntr;
@XmlElement(name = "POIId")
protected List poiId;
@XmlElement(name = "CfgtnScp")
@XmlSchemaType(name = "string")
protected PartyType15Code cfgtnScp;
@XmlElement(name = "Cntt", required = true)
protected AcceptorConfigurationContent5 cntt;
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link DataSetIdentification6 }
*
*/
public DataSetIdentification6 getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link DataSetIdentification6 }
*
*/
public TerminalManagementDataSet19 setId(DataSetIdentification6 value) {
this.id = value;
return this;
}
/**
* Gets the value of the seqCntr property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSeqCntr() {
return seqCntr;
}
/**
* Sets the value of the seqCntr property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public TerminalManagementDataSet19 setSeqCntr(String value) {
this.seqCntr = value;
return this;
}
/**
* Gets the value of the poiId 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 poiId property.
*
*
* For example, to add a new item, do as follows:
*
* getPOIId().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link GenericIdentification71 }
*
*
*/
public List getPOIId() {
if (poiId == null) {
poiId = new ArrayList();
}
return this.poiId;
}
/**
* Gets the value of the cfgtnScp property.
*
* @return
* possible object is
* {@link PartyType15Code }
*
*/
public PartyType15Code getCfgtnScp() {
return cfgtnScp;
}
/**
* Sets the value of the cfgtnScp property.
*
* @param value
* allowed object is
* {@link PartyType15Code }
*
*/
public TerminalManagementDataSet19 setCfgtnScp(PartyType15Code value) {
this.cfgtnScp = value;
return this;
}
/**
* Gets the value of the cntt property.
*
* @return
* possible object is
* {@link AcceptorConfigurationContent5 }
*
*/
public AcceptorConfigurationContent5 getCntt() {
return cntt;
}
/**
* Sets the value of the cntt property.
*
* @param value
* allowed object is
* {@link AcceptorConfigurationContent5 }
*
*/
public TerminalManagementDataSet19 setCntt(AcceptorConfigurationContent5 value) {
this.cntt = 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);
}
/**
* Adds a new item to the pOIId list.
* @see #getPOIId()
*
*/
public TerminalManagementDataSet19 addPOIId(GenericIdentification71 pOIId) {
getPOIId().add(pOIId);
return this;
}
}