
com.prowidesoftware.swift.model.mx.dic.PointOfInteractionComponentCharacteristics1 Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import java.math.BigDecimal;
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;
/**
* Physical and logical characteristics of a POI component (Point of Interaction).
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PointOfInteractionComponentCharacteristics1", propOrder = {
"mmry",
"com",
"sctyAccsMdls",
"sbcbrIdntyMdls",
"keyChckVal"
})
public class PointOfInteractionComponentCharacteristics1 {
@XmlElement(name = "Mmry")
protected List mmry;
@XmlElement(name = "Com")
protected List com;
@XmlElement(name = "SctyAccsMdls")
protected BigDecimal sctyAccsMdls;
@XmlElement(name = "SbcbrIdntyMdls")
protected BigDecimal sbcbrIdntyMdls;
@XmlElement(name = "KeyChckVal")
protected byte[] keyChckVal;
/**
* Gets the value of the mmry 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 mmry property.
*
*
* For example, to add a new item, do as follows:
*
* getMmry().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link MemoryCharacteristics1 }
*
*
*/
public List getMmry() {
if (mmry == null) {
mmry = new ArrayList();
}
return this.mmry;
}
/**
* Gets the value of the com 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 com property.
*
*
* For example, to add a new item, do as follows:
*
* getCom().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link CommunicationCharacteristics1 }
*
*
*/
public List getCom() {
if (com == null) {
com = new ArrayList();
}
return this.com;
}
/**
* Gets the value of the sctyAccsMdls property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getSctyAccsMdls() {
return sctyAccsMdls;
}
/**
* Sets the value of the sctyAccsMdls property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public PointOfInteractionComponentCharacteristics1 setSctyAccsMdls(BigDecimal value) {
this.sctyAccsMdls = value;
return this;
}
/**
* Gets the value of the sbcbrIdntyMdls property.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getSbcbrIdntyMdls() {
return sbcbrIdntyMdls;
}
/**
* Sets the value of the sbcbrIdntyMdls property.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public PointOfInteractionComponentCharacteristics1 setSbcbrIdntyMdls(BigDecimal value) {
this.sbcbrIdntyMdls = value;
return this;
}
/**
* Gets the value of the keyChckVal property.
*
* @return
* possible object is
* byte[]
*/
public byte[] getKeyChckVal() {
return keyChckVal;
}
/**
* Sets the value of the keyChckVal property.
*
* @param value
* allowed object is
* byte[]
*/
public PointOfInteractionComponentCharacteristics1 setKeyChckVal(byte[] value) {
this.keyChckVal = 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 mmry list.
* @see #getMmry()
*
*/
public PointOfInteractionComponentCharacteristics1 addMmry(MemoryCharacteristics1 mmry) {
getMmry().add(mmry);
return this;
}
/**
* Adds a new item to the com list.
* @see #getCom()
*
*/
public PointOfInteractionComponentCharacteristics1 addCom(CommunicationCharacteristics1 com) {
getCom().add(com);
return this;
}
}