com.prowidesoftware.swift.model.mx.dic.StatusReportContent4 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 javax.xml.datatype.XMLGregorianCalendar;
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 status report.
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "StatusReportContent4", propOrder = {
"poiCpblties",
"poiCmpnt",
"attndncCntxt",
"poiDtTm",
"dataSetReqrd",
"evt",
"errs"
})
public class StatusReportContent4 {
@XmlElement(name = "POICpblties")
protected PointOfInteractionCapabilities3 poiCpblties;
@XmlElement(name = "POICmpnt")
protected List poiCmpnt;
@XmlElement(name = "AttndncCntxt")
@XmlSchemaType(name = "string")
protected AttendanceContext1Code attndncCntxt;
@XmlElement(name = "POIDtTm", required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar poiDtTm;
@XmlElement(name = "DataSetReqrd")
protected TerminalManagementDataSet12 dataSetReqrd;
@XmlElement(name = "Evt")
protected List evt;
@XmlElement(name = "Errs")
protected List errs;
/**
* Gets the value of the poiCpblties property.
*
* @return
* possible object is
* {@link PointOfInteractionCapabilities3 }
*
*/
public PointOfInteractionCapabilities3 getPOICpblties() {
return poiCpblties;
}
/**
* Sets the value of the poiCpblties property.
*
* @param value
* allowed object is
* {@link PointOfInteractionCapabilities3 }
*
*/
public StatusReportContent4 setPOICpblties(PointOfInteractionCapabilities3 value) {
this.poiCpblties = value;
return this;
}
/**
* Gets the value of the poiCmpnt 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 poiCmpnt property.
*
*
* For example, to add a new item, do as follows:
*
* getPOICmpnt().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link PointOfInteractionComponent5 }
*
*
*/
public List getPOICmpnt() {
if (poiCmpnt == null) {
poiCmpnt = new ArrayList();
}
return this.poiCmpnt;
}
/**
* Gets the value of the attndncCntxt property.
*
* @return
* possible object is
* {@link AttendanceContext1Code }
*
*/
public AttendanceContext1Code getAttndncCntxt() {
return attndncCntxt;
}
/**
* Sets the value of the attndncCntxt property.
*
* @param value
* allowed object is
* {@link AttendanceContext1Code }
*
*/
public StatusReportContent4 setAttndncCntxt(AttendanceContext1Code value) {
this.attndncCntxt = value;
return this;
}
/**
* Gets the value of the poiDtTm property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getPOIDtTm() {
return poiDtTm;
}
/**
* Sets the value of the poiDtTm property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public StatusReportContent4 setPOIDtTm(XMLGregorianCalendar value) {
this.poiDtTm = value;
return this;
}
/**
* Gets the value of the dataSetReqrd property.
*
* @return
* possible object is
* {@link TerminalManagementDataSet12 }
*
*/
public TerminalManagementDataSet12 getDataSetReqrd() {
return dataSetReqrd;
}
/**
* Sets the value of the dataSetReqrd property.
*
* @param value
* allowed object is
* {@link TerminalManagementDataSet12 }
*
*/
public StatusReportContent4 setDataSetReqrd(TerminalManagementDataSet12 value) {
this.dataSetReqrd = value;
return this;
}
/**
* Gets the value of the evt 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 evt property.
*
*
* For example, to add a new item, do as follows:
*
* getEvt().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TMSEvent3 }
*
*
*/
public List getEvt() {
if (evt == null) {
evt = new ArrayList();
}
return this.evt;
}
/**
* Gets the value of the errs 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 errs property.
*
*
* For example, to add a new item, do as follows:
*
* getErrs().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getErrs() {
if (errs == null) {
errs = new ArrayList();
}
return this.errs;
}
@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 pOICmpnt list.
* @see #getPOICmpnt()
*
*/
public StatusReportContent4 addPOICmpnt(PointOfInteractionComponent5 pOICmpnt) {
getPOICmpnt().add(pOICmpnt);
return this;
}
/**
* Adds a new item to the evt list.
* @see #getEvt()
*
*/
public StatusReportContent4 addEvt(TMSEvent3 evt) {
getEvt().add(evt);
return this;
}
/**
* Adds a new item to the errs list.
* @see #getErrs()
*
*/
public StatusReportContent4 addErrs(String errs) {
getErrs().add(errs);
return this;
}
}