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

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

The newest version!

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

import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.List;
import com.prowidesoftware.swift.model.mx.adapters.IsoDateTimeAdapter;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
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 = "StatusReportContent11", propOrder = {
    "poiCpblties",
    "poiCmpnt",
    "poiGrpId",
    "attndncCntxt",
    "poiDtTm",
    "dataSetReqrd",
    "evt",
    "errs"
})
public class StatusReportContent11 {

    @XmlElement(name = "POICpblties")
    protected PointOfInteractionCapabilities9 poiCpblties;
    @XmlElement(name = "POICmpnt")
    protected List poiCmpnt;
    @XmlElement(name = "POIGrpId")
    protected List poiGrpId;
    @XmlElement(name = "AttndncCntxt")
    @XmlSchemaType(name = "string")
    protected AttendanceContext1Code attndncCntxt;
    @XmlElement(name = "POIDtTm", required = true, type = String.class)
    @XmlJavaTypeAdapter(IsoDateTimeAdapter.class)
    @XmlSchemaType(name = "dateTime")
    protected OffsetDateTime poiDtTm;
    @XmlElement(name = "DataSetReqrd")
    protected List 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 PointOfInteractionCapabilities9 }
     *     
     */
    public PointOfInteractionCapabilities9 getPOICpblties() {
        return poiCpblties;
    }

    /**
     * Sets the value of the poiCpblties property.
     * 
     * @param value
     *     allowed object is
     *     {@link PointOfInteractionCapabilities9 }
     *     
     */
    public StatusReportContent11 setPOICpblties(PointOfInteractionCapabilities9 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 Jakarta XML Binding object. * This is why there is not a {@code 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 PointOfInteractionComponent12 } * * * @return * The value of the poiCmpnt property. */ public List getPOICmpnt() { if (poiCmpnt == null) { poiCmpnt = new ArrayList<>(); } return this.poiCmpnt; } /** * Gets the value of the poiGrpId 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 poiGrpId property. * *

* For example, to add a new item, do as follows: *

     *    getPOIGrpId().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * * @return * The value of the poiGrpId property. */ public List getPOIGrpId() { if (poiGrpId == null) { poiGrpId = new ArrayList<>(); } return this.poiGrpId; } /** * 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 StatusReportContent11 setAttndncCntxt(AttendanceContext1Code value) { this.attndncCntxt = value; return this; } /** * Gets the value of the poiDtTm property. * * @return * possible object is * {@link String } * */ public OffsetDateTime getPOIDtTm() { return poiDtTm; } /** * Sets the value of the poiDtTm property. * * @param value * allowed object is * {@link String } * */ public StatusReportContent11 setPOIDtTm(OffsetDateTime value) { this.poiDtTm = value; return this; } /** * Gets the value of the dataSetReqrd 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 dataSetReqrd property. * *

* For example, to add a new item, do as follows: *

     *    getDataSetReqrd().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link DataSetRequest3 } * * * @return * The value of the dataSetReqrd property. */ public List getDataSetReqrd() { if (dataSetReqrd == null) { dataSetReqrd = new ArrayList<>(); } return this.dataSetReqrd; } /** * 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 Jakarta XML Binding object. * This is why there is not a {@code 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 TMSEvent9 } * * * @return * The value of the evt property. */ 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 Jakarta XML Binding object. * This is why there is not a {@code 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 } * * * @return * The value of the errs property. */ 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 StatusReportContent11 addPOICmpnt(PointOfInteractionComponent12 pOICmpnt) { getPOICmpnt().add(pOICmpnt); return this; } /** * Adds a new item to the pOIGrpId list. * @see #getPOIGrpId() * */ public StatusReportContent11 addPOIGrpId(String pOIGrpId) { getPOIGrpId().add(pOIGrpId); return this; } /** * Adds a new item to the dataSetReqrd list. * @see #getDataSetReqrd() * */ public StatusReportContent11 addDataSetReqrd(DataSetRequest3 dataSetReqrd) { getDataSetReqrd().add(dataSetReqrd); return this; } /** * Adds a new item to the evt list. * @see #getEvt() * */ public StatusReportContent11 addEvt(TMSEvent9 evt) { getEvt().add(evt); return this; } /** * Adds a new item to the errs list. * @see #getErrs() * */ public StatusReportContent11 addErrs(String errs) { getErrs().add(errs); return this; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy