com.hubject.datex.energyinfrastructure.generated.facilities.OrganisationUnit 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.facilities;
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.location_referencing.LocationReference;
/**
* Java class for OrganisationUnit complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="OrganisationUnit">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="name" type="{http://datex2.eu/schema/3/common}MultilingualString" minOccurs="0"/>
* <element name="function" type="{http://datex2.eu/schema/3/common}MultilingualString" maxOccurs="unbounded" minOccurs="0"/>
* <element name="locationReference" type="{http://datex2.eu/schema/3/locationReferencing}LocationReference" minOccurs="0"/>
* <element name="contactInformation" type="{http://datex2.eu/schema/3/facilities}ContactInformation" maxOccurs="unbounded" minOccurs="0"/>
* <element name="operatingHours" type="{http://datex2.eu/schema/3/facilities}OperatingHours" minOccurs="0"/>
* <element name="_organisationUnitExtension" type="{http://datex2.eu/schema/3/common}_ExtensionType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "OrganisationUnit", propOrder = {
"name",
"function",
"locationReference",
"contactInformation",
"operatingHours",
"organisationUnitExtension"
})
public class OrganisationUnit {
protected MultilingualString name;
protected List function;
protected LocationReference locationReference;
protected List contactInformation;
protected OperatingHours operatingHours;
@XmlElement(name = "_organisationUnitExtension")
protected ExtensionType organisationUnitExtension;
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link MultilingualString }
*
*/
public MultilingualString getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link MultilingualString }
*
*/
public void setName(MultilingualString value) {
this.name = value;
}
/**
* Gets the value of the function 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 function property.
*
*
* For example, to add a new item, do as follows:
*
* getFunction().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link MultilingualString }
*
*
*/
public List getFunction() {
if (function == null) {
function = new ArrayList();
}
return this.function;
}
/**
* Gets the value of the locationReference property.
*
* @return
* possible object is
* {@link LocationReference }
*
*/
public LocationReference getLocationReference() {
return locationReference;
}
/**
* Sets the value of the locationReference property.
*
* @param value
* allowed object is
* {@link LocationReference }
*
*/
public void setLocationReference(LocationReference value) {
this.locationReference = value;
}
/**
* Gets the value of the contactInformation 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 contactInformation property.
*
*
* For example, to add a new item, do as follows:
*
* getContactInformation().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ContactInformation }
*
*
*/
public List getContactInformation() {
if (contactInformation == null) {
contactInformation = new ArrayList();
}
return this.contactInformation;
}
/**
* Gets the value of the operatingHours property.
*
* @return
* possible object is
* {@link OperatingHours }
*
*/
public OperatingHours getOperatingHours() {
return operatingHours;
}
/**
* Sets the value of the operatingHours property.
*
* @param value
* allowed object is
* {@link OperatingHours }
*
*/
public void setOperatingHours(OperatingHours value) {
this.operatingHours = value;
}
/**
* Gets the value of the organisationUnitExtension property.
*
* @return
* possible object is
* {@link ExtensionType }
*
*/
public ExtensionType getOrganisationUnitExtension() {
return organisationUnitExtension;
}
/**
* Sets the value of the organisationUnitExtension property.
*
* @param value
* allowed object is
* {@link ExtensionType }
*
*/
public void setOrganisationUnitExtension(ExtensionType value) {
this.organisationUnitExtension = value;
}
}