
eu.datex2.schema._2._2_0.Equipment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datex2-api Show documentation
Show all versions of datex2-api Show documentation
DATEX II API for Java, allows to create DATEX II suppliers and clients.
The newest version!
package eu.datex2.schema._2._2_0;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for Equipment complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Equipment">
* <complexContent>
* <extension base="{http://datex2.eu/schema/2/2_0}ParkingEquipmentOrServiceFacility">
* <sequence>
* <element name="equipmentType" type="{http://datex2.eu/schema/2/2_0}EquipmentTypeEnum"/>
* <element name="electricCharging" type="{http://datex2.eu/schema/2/2_0}ElectricCharging" minOccurs="0"/>
* <element name="equipmentExtension" type="{http://datex2.eu/schema/2/2_0}_ExtensionType" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Equipment", propOrder = {
"equipmentType",
"electricCharging",
"equipmentExtension"
})
public class Equipment
extends ParkingEquipmentOrServiceFacility
{
@XmlElement(required = true)
@XmlSchemaType(name = "string")
protected EquipmentTypeEnum equipmentType;
protected ElectricCharging electricCharging;
protected ExtensionType equipmentExtension;
/**
* Gets the value of the equipmentType property.
*
* @return
* possible object is
* {@link EquipmentTypeEnum }
*
*/
public EquipmentTypeEnum getEquipmentType() {
return equipmentType;
}
/**
* Sets the value of the equipmentType property.
*
* @param value
* allowed object is
* {@link EquipmentTypeEnum }
*
*/
public void setEquipmentType(EquipmentTypeEnum value) {
this.equipmentType = value;
}
/**
* Gets the value of the electricCharging property.
*
* @return
* possible object is
* {@link ElectricCharging }
*
*/
public ElectricCharging getElectricCharging() {
return electricCharging;
}
/**
* Sets the value of the electricCharging property.
*
* @param value
* allowed object is
* {@link ElectricCharging }
*
*/
public void setElectricCharging(ElectricCharging value) {
this.electricCharging = value;
}
/**
* Gets the value of the equipmentExtension property.
*
* @return
* possible object is
* {@link ExtensionType }
*
*/
public ExtensionType getEquipmentExtension() {
return equipmentExtension;
}
/**
* Sets the value of the equipmentExtension property.
*
* @param value
* allowed object is
* {@link ExtensionType }
*
*/
public void setEquipmentExtension(ExtensionType value) {
this.equipmentExtension = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy