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

com.prowidesoftware.swift.model.mx.dic.MaintenanceDelegation12 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.XmlSchemaType;
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;


/**
 * Information on the delegation of a maintenance action or maintenance function.
 * 
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MaintenanceDelegation12", propOrder = {
    "mntncSvc",
    "rspn",
    "rspnRsn",
    "dlgtnTp",
    "poiSubset",
    "dlgtnScpId",
    "dlgtnScpDef",
    "dlgtnProof",
    "prtctdDlgtnProof",
    "poiIdAssoctn"
})
public class MaintenanceDelegation12 {

    @XmlElement(name = "MntncSvc", required = true)
    @XmlSchemaType(name = "string")
    protected List mntncSvc;
    @XmlElement(name = "Rspn", required = true)
    @XmlSchemaType(name = "string")
    protected Response2Code rspn;
    @XmlElement(name = "RspnRsn")
    protected String rspnRsn;
    @XmlElement(name = "DlgtnTp", required = true)
    @XmlSchemaType(name = "string")
    protected TerminalManagementAction3Code dlgtnTp;
    @XmlElement(name = "POISubset")
    protected List poiSubset;
    @XmlElement(name = "DlgtnScpId")
    protected String dlgtnScpId;
    @XmlElement(name = "DlgtnScpDef")
    protected byte[] dlgtnScpDef;
    @XmlElement(name = "DlgtnProof")
    protected byte[] dlgtnProof;
    @XmlElement(name = "PrtctdDlgtnProof")
    protected ContentInformationType26 prtctdDlgtnProof;
    @XmlElement(name = "POIIdAssoctn")
    protected List poiIdAssoctn;

    /**
     * Gets the value of the mntncSvc 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 mntncSvc property. * *

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

     *    getMntncSvc().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link DataSetCategory16Code } * * * @return * The value of the mntncSvc property. */ public List getMntncSvc() { if (mntncSvc == null) { mntncSvc = new ArrayList<>(); } return this.mntncSvc; } /** * Gets the value of the rspn property. * * @return * possible object is * {@link Response2Code } * */ public Response2Code getRspn() { return rspn; } /** * Sets the value of the rspn property. * * @param value * allowed object is * {@link Response2Code } * */ public MaintenanceDelegation12 setRspn(Response2Code value) { this.rspn = value; return this; } /** * Gets the value of the rspnRsn property. * * @return * possible object is * {@link String } * */ public String getRspnRsn() { return rspnRsn; } /** * Sets the value of the rspnRsn property. * * @param value * allowed object is * {@link String } * */ public MaintenanceDelegation12 setRspnRsn(String value) { this.rspnRsn = value; return this; } /** * Gets the value of the dlgtnTp property. * * @return * possible object is * {@link TerminalManagementAction3Code } * */ public TerminalManagementAction3Code getDlgtnTp() { return dlgtnTp; } /** * Sets the value of the dlgtnTp property. * * @param value * allowed object is * {@link TerminalManagementAction3Code } * */ public MaintenanceDelegation12 setDlgtnTp(TerminalManagementAction3Code value) { this.dlgtnTp = value; return this; } /** * Gets the value of the poiSubset 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 poiSubset property. * *

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

     *    getPOISubset().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * * @return * The value of the poiSubset property. */ public List getPOISubset() { if (poiSubset == null) { poiSubset = new ArrayList<>(); } return this.poiSubset; } /** * Gets the value of the dlgtnScpId property. * * @return * possible object is * {@link String } * */ public String getDlgtnScpId() { return dlgtnScpId; } /** * Sets the value of the dlgtnScpId property. * * @param value * allowed object is * {@link String } * */ public MaintenanceDelegation12 setDlgtnScpId(String value) { this.dlgtnScpId = value; return this; } /** * Gets the value of the dlgtnScpDef property. * * @return * possible object is * byte[] */ public byte[] getDlgtnScpDef() { return dlgtnScpDef; } /** * Sets the value of the dlgtnScpDef property. * * @param value * allowed object is * byte[] */ public MaintenanceDelegation12 setDlgtnScpDef(byte[] value) { this.dlgtnScpDef = value; return this; } /** * Gets the value of the dlgtnProof property. * * @return * possible object is * byte[] */ public byte[] getDlgtnProof() { return dlgtnProof; } /** * Sets the value of the dlgtnProof property. * * @param value * allowed object is * byte[] */ public MaintenanceDelegation12 setDlgtnProof(byte[] value) { this.dlgtnProof = value; return this; } /** * Gets the value of the prtctdDlgtnProof property. * * @return * possible object is * {@link ContentInformationType26 } * */ public ContentInformationType26 getPrtctdDlgtnProof() { return prtctdDlgtnProof; } /** * Sets the value of the prtctdDlgtnProof property. * * @param value * allowed object is * {@link ContentInformationType26 } * */ public MaintenanceDelegation12 setPrtctdDlgtnProof(ContentInformationType26 value) { this.prtctdDlgtnProof = value; return this; } /** * Gets the value of the poiIdAssoctn 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 poiIdAssoctn property. * *

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

     *    getPOIIdAssoctn().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link MaintenanceIdentificationAssociation1 } * * * @return * The value of the poiIdAssoctn property. */ public List getPOIIdAssoctn() { if (poiIdAssoctn == null) { poiIdAssoctn = new ArrayList<>(); } return this.poiIdAssoctn; } @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 mntncSvc list. * @see #getMntncSvc() * */ public MaintenanceDelegation12 addMntncSvc(DataSetCategory16Code mntncSvc) { getMntncSvc().add(mntncSvc); return this; } /** * Adds a new item to the pOISubset list. * @see #getPOISubset() * */ public MaintenanceDelegation12 addPOISubset(String pOISubset) { getPOISubset().add(pOISubset); return this; } /** * Adds a new item to the pOIIdAssoctn list. * @see #getPOIIdAssoctn() * */ public MaintenanceDelegation12 addPOIIdAssoctn(MaintenanceIdentificationAssociation1 pOIIdAssoctn) { getPOIIdAssoctn().add(pOIIdAssoctn); return this; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy