com.hubject.datex.energyinfrastructure.generated.cisinformation.ServiceRequestCondition Maven / Gradle / Ivy
Show all versions of convert Show documentation
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.1
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2022.10.06 at 11:44:34 AM CEST
//
package com.hubject.datex.energyinfrastructure.generated.cisinformation;
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 com.hubject.datex.energyinfrastructure.generated.common.ExtensionType;
import com.hubject.datex.energyinfrastructure.generated.common.MultilingualString;
import com.hubject.datex.energyinfrastructure.generated.common.Reference;
import com.hubject.datex.energyinfrastructure.generated.common.VersionedReference;
/**
* Java class for ServiceRequestCondition complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ServiceRequestCondition">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="conditionDescription" type="{http://datex2.eu/schema/3/common}MultilingualString" minOccurs="0"/>
* <element name="externalIdCondition" type="{http://datex2.eu/schema/3/common}String" maxOccurs="unbounded" minOccurs="0"/>
* <element name="referencedCondition" type="{http://datex2.eu/schema/3/common}Reference" maxOccurs="unbounded" minOccurs="0"/>
* <element name="versionReferencedCondition" type="{http://datex2.eu/schema/3/common}VersionedReference" maxOccurs="unbounded" minOccurs="0"/>
* <element name="_serviceRequestConditionExtension" type="{http://datex2.eu/schema/3/common}_ExtensionType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ServiceRequestCondition", propOrder = {
"conditionDescription",
"externalIdCondition",
"referencedCondition",
"versionReferencedCondition",
"serviceRequestConditionExtension"
})
public class ServiceRequestCondition {
protected MultilingualString conditionDescription;
protected List externalIdCondition;
protected List referencedCondition;
protected List versionReferencedCondition;
@XmlElement(name = "_serviceRequestConditionExtension")
protected ExtensionType serviceRequestConditionExtension;
/**
* Gets the value of the conditionDescription property.
*
* @return
* possible object is
* {@link MultilingualString }
*
*/
public MultilingualString getConditionDescription() {
return conditionDescription;
}
/**
* Sets the value of the conditionDescription property.
*
* @param value
* allowed object is
* {@link MultilingualString }
*
*/
public void setConditionDescription(MultilingualString value) {
this.conditionDescription = value;
}
/**
* Gets the value of the externalIdCondition 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 externalIdCondition property.
*
*
* For example, to add a new item, do as follows:
*
* getExternalIdCondition().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getExternalIdCondition() {
if (externalIdCondition == null) {
externalIdCondition = new ArrayList();
}
return this.externalIdCondition;
}
/**
* Gets the value of the referencedCondition 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 referencedCondition property.
*
*
* For example, to add a new item, do as follows:
*
* getReferencedCondition().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Reference }
*
*
*/
public List getReferencedCondition() {
if (referencedCondition == null) {
referencedCondition = new ArrayList();
}
return this.referencedCondition;
}
/**
* Gets the value of the versionReferencedCondition 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 versionReferencedCondition property.
*
*
* For example, to add a new item, do as follows:
*
* getVersionReferencedCondition().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link VersionedReference }
*
*
*/
public List getVersionReferencedCondition() {
if (versionReferencedCondition == null) {
versionReferencedCondition = new ArrayList();
}
return this.versionReferencedCondition;
}
/**
* Gets the value of the serviceRequestConditionExtension property.
*
* @return
* possible object is
* {@link ExtensionType }
*
*/
public ExtensionType getServiceRequestConditionExtension() {
return serviceRequestConditionExtension;
}
/**
* Sets the value of the serviceRequestConditionExtension property.
*
* @param value
* allowed object is
* {@link ExtensionType }
*
*/
public void setServiceRequestConditionExtension(ExtensionType value) {
this.serviceRequestConditionExtension = value;
}
}