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

network.oxalis.peppol.ubl2.jaxb.cac.StatusType Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2023.08.26 at 01:27:09 PM UTC 
//


package network.oxalis.peppol.ubl2.jaxb.cac;

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 lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.NoArgsConstructor;
import network.oxalis.peppol.ubl2.jaxb.cbc.ConditionCodeType;
import network.oxalis.peppol.ubl2.jaxb.cbc.DescriptionType;
import network.oxalis.peppol.ubl2.jaxb.cbc.IndicationIndicatorType;
import network.oxalis.peppol.ubl2.jaxb.cbc.PercentType;
import network.oxalis.peppol.ubl2.jaxb.cbc.ReferenceDateType;
import network.oxalis.peppol.ubl2.jaxb.cbc.ReferenceTimeType;
import network.oxalis.peppol.ubl2.jaxb.cbc.ReliabilityPercentType;
import network.oxalis.peppol.ubl2.jaxb.cbc.SequenceIDType;
import network.oxalis.peppol.ubl2.jaxb.cbc.StatusReasonCodeType;
import network.oxalis.peppol.ubl2.jaxb.cbc.StatusReasonType;
import network.oxalis.peppol.ubl2.jaxb.cbc.TextType;


/**
 * 

Java class for StatusType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="StatusType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}ConditionCode" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}ReferenceDate" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}ReferenceTime" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}Description" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}StatusReasonCode" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}StatusReason" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}SequenceID" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}Text" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}IndicationIndicator" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}Percent" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}ReliabilityPercent" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2}Condition" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "StatusType", propOrder = { "conditionCode", "referenceDate", "referenceTime", "description", "statusReasonCode", "statusReason", "sequenceID", "text", "indicationIndicator", "percent", "reliabilityPercent", "condition" }) @Builder @NoArgsConstructor @AllArgsConstructor public class StatusType { @XmlElement(name = "ConditionCode", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected ConditionCodeType conditionCode; @XmlElement(name = "ReferenceDate", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected ReferenceDateType referenceDate; @XmlElement(name = "ReferenceTime", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected ReferenceTimeType referenceTime; @XmlElement(name = "Description", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected List description; @XmlElement(name = "StatusReasonCode", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected StatusReasonCodeType statusReasonCode; @XmlElement(name = "StatusReason", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected List statusReason; @XmlElement(name = "SequenceID", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected SequenceIDType sequenceID; @XmlElement(name = "Text", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected List text; @XmlElement(name = "IndicationIndicator", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected IndicationIndicatorType indicationIndicator; @XmlElement(name = "Percent", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected PercentType percent; @XmlElement(name = "ReliabilityPercent", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected ReliabilityPercentType reliabilityPercent; @XmlElement(name = "Condition") protected List condition; /** * Gets the value of the conditionCode property. * * @return * possible object is * {@link ConditionCodeType } * */ public ConditionCodeType getConditionCode() { return conditionCode; } /** * Sets the value of the conditionCode property. * * @param value * allowed object is * {@link ConditionCodeType } * */ public void setConditionCode(ConditionCodeType value) { this.conditionCode = value; } /** * Gets the value of the referenceDate property. * * @return * possible object is * {@link ReferenceDateType } * */ public ReferenceDateType getReferenceDate() { return referenceDate; } /** * Sets the value of the referenceDate property. * * @param value * allowed object is * {@link ReferenceDateType } * */ public void setReferenceDate(ReferenceDateType value) { this.referenceDate = value; } /** * Gets the value of the referenceTime property. * * @return * possible object is * {@link ReferenceTimeType } * */ public ReferenceTimeType getReferenceTime() { return referenceTime; } /** * Sets the value of the referenceTime property. * * @param value * allowed object is * {@link ReferenceTimeType } * */ public void setReferenceTime(ReferenceTimeType value) { this.referenceTime = value; } /** * Gets the value of the description 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 description property. * *

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

     *    getDescription().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link DescriptionType } * * */ public List getDescription() { if (description == null) { description = new ArrayList(); } return this.description; } /** * Gets the value of the statusReasonCode property. * * @return * possible object is * {@link StatusReasonCodeType } * */ public StatusReasonCodeType getStatusReasonCode() { return statusReasonCode; } /** * Sets the value of the statusReasonCode property. * * @param value * allowed object is * {@link StatusReasonCodeType } * */ public void setStatusReasonCode(StatusReasonCodeType value) { this.statusReasonCode = value; } /** * Gets the value of the statusReason 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 statusReason property. * *

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

     *    getStatusReason().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link StatusReasonType } * * */ public List getStatusReason() { if (statusReason == null) { statusReason = new ArrayList(); } return this.statusReason; } /** * Gets the value of the sequenceID property. * * @return * possible object is * {@link SequenceIDType } * */ public SequenceIDType getSequenceID() { return sequenceID; } /** * Sets the value of the sequenceID property. * * @param value * allowed object is * {@link SequenceIDType } * */ public void setSequenceID(SequenceIDType value) { this.sequenceID = value; } /** * Gets the value of the text 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 text property. * *

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

     *    getText().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link TextType } * * */ public List getText() { if (text == null) { text = new ArrayList(); } return this.text; } /** * Gets the value of the indicationIndicator property. * * @return * possible object is * {@link IndicationIndicatorType } * */ public IndicationIndicatorType getIndicationIndicator() { return indicationIndicator; } /** * Sets the value of the indicationIndicator property. * * @param value * allowed object is * {@link IndicationIndicatorType } * */ public void setIndicationIndicator(IndicationIndicatorType value) { this.indicationIndicator = value; } /** * Gets the value of the percent property. * * @return * possible object is * {@link PercentType } * */ public PercentType getPercent() { return percent; } /** * Sets the value of the percent property. * * @param value * allowed object is * {@link PercentType } * */ public void setPercent(PercentType value) { this.percent = value; } /** * Gets the value of the reliabilityPercent property. * * @return * possible object is * {@link ReliabilityPercentType } * */ public ReliabilityPercentType getReliabilityPercent() { return reliabilityPercent; } /** * Sets the value of the reliabilityPercent property. * * @param value * allowed object is * {@link ReliabilityPercentType } * */ public void setReliabilityPercent(ReliabilityPercentType value) { this.reliabilityPercent = value; } /** * Gets the value of the condition 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 condition property. * *

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

     *    getCondition().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ConditionType } * * */ public List getCondition() { if (condition == null) { condition = new ArrayList(); } return this.condition; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy