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

com.hubject.datex.energyinfrastructure.generated.facilities.FacilityObject Maven / Gradle / Ivy

//
// 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 javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
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 FacilityObject complex type. * *

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

 * <complexType name="FacilityObject">
 *   <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="externalIdentifier" type="{http://datex2.eu/schema/3/common}String" minOccurs="0"/>
 *         <element name="lastUpdated" type="{http://datex2.eu/schema/3/common}DateTime" minOccurs="0"/>
 *         <element name="operatingHours" type="{http://datex2.eu/schema/3/facilities}OperatingHours" minOccurs="0"/>
 *         <element name="locationReference" type="{http://datex2.eu/schema/3/locationReferencing}LocationReference" minOccurs="0"/>
 *         <element name="owner" type="{http://datex2.eu/schema/3/facilities}Organisation" minOccurs="0"/>
 *         <element name="operator" type="{http://datex2.eu/schema/3/facilities}Organisation" minOccurs="0"/>
 *         <element name="rates" type="{http://datex2.eu/schema/3/facilities}Rates" minOccurs="0"/>
 *         <element name="_facilityObjectExtension" type="{http://datex2.eu/schema/3/common}_ExtensionType" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="version" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FacilityObject", propOrder = { "name", "externalIdentifier", "lastUpdated", "operatingHours", "locationReference", "owner", "operator", "rates", "facilityObjectExtension" }) @XmlSeeAlso({ SupplementalFacility.class, Facility.class }) public abstract class FacilityObject { protected MultilingualString name; protected String externalIdentifier; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar lastUpdated; protected OperatingHours operatingHours; protected LocationReference locationReference; protected Organisation owner; protected Organisation operator; protected Rates rates; @XmlElement(name = "_facilityObjectExtension") protected ExtensionType facilityObjectExtension; @XmlAttribute(name = "id", required = true) protected String id; @XmlAttribute(name = "version", required = true) protected String version; /** * 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 externalIdentifier property. * * @return * possible object is * {@link String } * */ public String getExternalIdentifier() { return externalIdentifier; } /** * Sets the value of the externalIdentifier property. * * @param value * allowed object is * {@link String } * */ public void setExternalIdentifier(String value) { this.externalIdentifier = value; } /** * Gets the value of the lastUpdated property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getLastUpdated() { return lastUpdated; } /** * Sets the value of the lastUpdated property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setLastUpdated(XMLGregorianCalendar value) { this.lastUpdated = value; } /** * 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 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 owner property. * * @return * possible object is * {@link Organisation } * */ public Organisation getOwner() { return owner; } /** * Sets the value of the owner property. * * @param value * allowed object is * {@link Organisation } * */ public void setOwner(Organisation value) { this.owner = value; } /** * Gets the value of the operator property. * * @return * possible object is * {@link Organisation } * */ public Organisation getOperator() { return operator; } /** * Sets the value of the operator property. * * @param value * allowed object is * {@link Organisation } * */ public void setOperator(Organisation value) { this.operator = value; } /** * Gets the value of the rates property. * * @return * possible object is * {@link Rates } * */ public Rates getRates() { return rates; } /** * Sets the value of the rates property. * * @param value * allowed object is * {@link Rates } * */ public void setRates(Rates value) { this.rates = value; } /** * Gets the value of the facilityObjectExtension property. * * @return * possible object is * {@link ExtensionType } * */ public ExtensionType getFacilityObjectExtension() { return facilityObjectExtension; } /** * Sets the value of the facilityObjectExtension property. * * @param value * allowed object is * {@link ExtensionType } * */ public void setFacilityObjectExtension(ExtensionType value) { this.facilityObjectExtension = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the version property. * * @return * possible object is * {@link String } * */ public String getVersion() { return version; } /** * Sets the value of the version property. * * @param value * allowed object is * {@link String } * */ public void setVersion(String value) { this.version = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy