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

network.oxalis.peppol.ubl2.jaxb.cac.ItemPropertyType 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.IDType;
import network.oxalis.peppol.ubl2.jaxb.cbc.ImportanceCodeType;
import network.oxalis.peppol.ubl2.jaxb.cbc.ListValueType;
import network.oxalis.peppol.ubl2.jaxb.cbc.NameCodeType;
import network.oxalis.peppol.ubl2.jaxb.cbc.NameType;
import network.oxalis.peppol.ubl2.jaxb.cbc.TestMethodType;
import network.oxalis.peppol.ubl2.jaxb.cbc.ValueQualifierType;
import network.oxalis.peppol.ubl2.jaxb.cbc.ValueQuantityType;
import network.oxalis.peppol.ubl2.jaxb.cbc.ValueType;


/**
 * 

Java class for ItemPropertyType complex type. * *

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

 * <complexType name="ItemPropertyType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}ID" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}Name"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}NameCode" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}TestMethod" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}Value" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}ValueQuantity" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}ValueQualifier" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}ImportanceCode" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}ListValue" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2}UsabilityPeriod" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2}ItemPropertyGroup" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2}RangeDimension" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2}ItemPropertyRange" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ItemPropertyType", propOrder = { "id", "name", "nameCode", "testMethod", "value", "valueQuantity", "valueQualifier", "importanceCode", "listValue", "usabilityPeriod", "itemPropertyGroup", "rangeDimension", "itemPropertyRange" }) @Builder @NoArgsConstructor @AllArgsConstructor public class ItemPropertyType { @XmlElement(name = "ID", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected IDType id; @XmlElement(name = "Name", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2", required = true) protected NameType name; @XmlElement(name = "NameCode", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected NameCodeType nameCode; @XmlElement(name = "TestMethod", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected TestMethodType testMethod; @XmlElement(name = "Value", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected ValueType value; @XmlElement(name = "ValueQuantity", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected ValueQuantityType valueQuantity; @XmlElement(name = "ValueQualifier", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected List valueQualifier; @XmlElement(name = "ImportanceCode", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected ImportanceCodeType importanceCode; @XmlElement(name = "ListValue", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected List listValue; @XmlElement(name = "UsabilityPeriod") protected PeriodType usabilityPeriod; @XmlElement(name = "ItemPropertyGroup") protected List itemPropertyGroup; @XmlElement(name = "RangeDimension") protected DimensionType rangeDimension; @XmlElement(name = "ItemPropertyRange") protected ItemPropertyRangeType itemPropertyRange; /** * Gets the value of the id property. * * @return * possible object is * {@link IDType } * */ public IDType getID() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link IDType } * */ public void setID(IDType value) { this.id = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link NameType } * */ public NameType getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link NameType } * */ public void setName(NameType value) { this.name = value; } /** * Gets the value of the nameCode property. * * @return * possible object is * {@link NameCodeType } * */ public NameCodeType getNameCode() { return nameCode; } /** * Sets the value of the nameCode property. * * @param value * allowed object is * {@link NameCodeType } * */ public void setNameCode(NameCodeType value) { this.nameCode = value; } /** * Gets the value of the testMethod property. * * @return * possible object is * {@link TestMethodType } * */ public TestMethodType getTestMethod() { return testMethod; } /** * Sets the value of the testMethod property. * * @param value * allowed object is * {@link TestMethodType } * */ public void setTestMethod(TestMethodType value) { this.testMethod = value; } /** * Gets the value of the value property. * * @return * possible object is * {@link ValueType } * */ public ValueType getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link ValueType } * */ public void setValue(ValueType value) { this.value = value; } /** * Gets the value of the valueQuantity property. * * @return * possible object is * {@link ValueQuantityType } * */ public ValueQuantityType getValueQuantity() { return valueQuantity; } /** * Sets the value of the valueQuantity property. * * @param value * allowed object is * {@link ValueQuantityType } * */ public void setValueQuantity(ValueQuantityType value) { this.valueQuantity = value; } /** * Gets the value of the valueQualifier 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 valueQualifier property. * *

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

     *    getValueQualifier().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ValueQualifierType } * * */ public List getValueQualifier() { if (valueQualifier == null) { valueQualifier = new ArrayList(); } return this.valueQualifier; } /** * Gets the value of the importanceCode property. * * @return * possible object is * {@link ImportanceCodeType } * */ public ImportanceCodeType getImportanceCode() { return importanceCode; } /** * Sets the value of the importanceCode property. * * @param value * allowed object is * {@link ImportanceCodeType } * */ public void setImportanceCode(ImportanceCodeType value) { this.importanceCode = value; } /** * Gets the value of the listValue 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 listValue property. * *

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

     *    getListValue().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ListValueType } * * */ public List getListValue() { if (listValue == null) { listValue = new ArrayList(); } return this.listValue; } /** * Gets the value of the usabilityPeriod property. * * @return * possible object is * {@link PeriodType } * */ public PeriodType getUsabilityPeriod() { return usabilityPeriod; } /** * Sets the value of the usabilityPeriod property. * * @param value * allowed object is * {@link PeriodType } * */ public void setUsabilityPeriod(PeriodType value) { this.usabilityPeriod = value; } /** * Gets the value of the itemPropertyGroup 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 itemPropertyGroup property. * *

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

     *    getItemPropertyGroup().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ItemPropertyGroupType } * * */ public List getItemPropertyGroup() { if (itemPropertyGroup == null) { itemPropertyGroup = new ArrayList(); } return this.itemPropertyGroup; } /** * Gets the value of the rangeDimension property. * * @return * possible object is * {@link DimensionType } * */ public DimensionType getRangeDimension() { return rangeDimension; } /** * Sets the value of the rangeDimension property. * * @param value * allowed object is * {@link DimensionType } * */ public void setRangeDimension(DimensionType value) { this.rangeDimension = value; } /** * Gets the value of the itemPropertyRange property. * * @return * possible object is * {@link ItemPropertyRangeType } * */ public ItemPropertyRangeType getItemPropertyRange() { return itemPropertyRange; } /** * Sets the value of the itemPropertyRange property. * * @param value * allowed object is * {@link ItemPropertyRangeType } * */ public void setItemPropertyRange(ItemPropertyRangeType value) { this.itemPropertyRange = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy