com.hubject.datex.energyinfrastructure.generated.infrastructure.EnergyInfrastructureSite 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.infrastructure;
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.facilities.Facility;
import com.hubject.datex.energyinfrastructure.generated.location_referencing.Location;
/**
* Java class for EnergyInfrastructureSite complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="EnergyInfrastructureSite">
* <complexContent>
* <extension base="{http://datex2.eu/schema/3/facilities}Facility">
* <sequence>
* <element name="brand" type="{http://datex2.eu/schema/3/common}MultilingualString" minOccurs="0"/>
* <element name="entrance" type="{http://datex2.eu/schema/3/locationReferencing}Location" maxOccurs="unbounded" minOccurs="0"/>
* <element name="energyInfrastructureStation" type="{http://datex2.eu/schema/3/energyInfrastructure}EnergyInfrastructureStation" maxOccurs="unbounded" minOccurs="0"/>
* <element name="_energyInfrastructureSiteExtension" type="{http://datex2.eu/schema/3/common}_ExtensionType" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "EnergyInfrastructureSite", propOrder = {
"brand",
"entrance",
"energyInfrastructureStation",
"energyInfrastructureSiteExtension"
})
public class EnergyInfrastructureSite
extends Facility
{
protected MultilingualString brand;
protected List entrance;
protected List energyInfrastructureStation;
@XmlElement(name = "_energyInfrastructureSiteExtension")
protected ExtensionType energyInfrastructureSiteExtension;
/**
* Gets the value of the brand property.
*
* @return
* possible object is
* {@link MultilingualString }
*
*/
public MultilingualString getBrand() {
return brand;
}
/**
* Sets the value of the brand property.
*
* @param value
* allowed object is
* {@link MultilingualString }
*
*/
public void setBrand(MultilingualString value) {
this.brand = value;
}
/**
* Gets the value of the entrance 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 entrance property.
*
*
* For example, to add a new item, do as follows:
*
* getEntrance().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Location }
*
*
*/
public List getEntrance() {
if (entrance == null) {
entrance = new ArrayList();
}
return this.entrance;
}
/**
* Gets the value of the energyInfrastructureStation 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 energyInfrastructureStation property.
*
*
* For example, to add a new item, do as follows:
*
* getEnergyInfrastructureStation().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link EnergyInfrastructureStation }
*
*
*/
public List getEnergyInfrastructureStation() {
if (energyInfrastructureStation == null) {
energyInfrastructureStation = new ArrayList();
}
return this.energyInfrastructureStation;
}
/**
* Gets the value of the energyInfrastructureSiteExtension property.
*
* @return
* possible object is
* {@link ExtensionType }
*
*/
public ExtensionType getEnergyInfrastructureSiteExtension() {
return energyInfrastructureSiteExtension;
}
/**
* Sets the value of the energyInfrastructureSiteExtension property.
*
* @param value
* allowed object is
* {@link ExtensionType }
*
*/
public void setEnergyInfrastructureSiteExtension(ExtensionType value) {
this.energyInfrastructureSiteExtension = value;
}
}