com.hubject.datex.energyinfrastructure.generated.location_referencing.AlertCArea Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of convert Show documentation
Show all versions of convert Show documentation
Use converters from com.hubject.datex.convert.converters package to convert from the OICP formats to DATEX II TablePublication and StatusPublication.
//
// 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.location_referencing;
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;
/**
* Java class for AlertCArea complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AlertCArea">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="alertCLocationCountryCode" type="{http://datex2.eu/schema/3/common}String"/>
* <element name="alertCLocationTableNumber" type="{http://datex2.eu/schema/3/common}String"/>
* <element name="alertCLocationTableVersion" type="{http://datex2.eu/schema/3/common}String"/>
* <element name="areaLocation" type="{http://datex2.eu/schema/3/locationReferencing}AlertCLocation"/>
* <element name="_alertCAreaExtension" type="{http://datex2.eu/schema/3/common}_ExtensionType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AlertCArea", propOrder = {
"alertCLocationCountryCode",
"alertCLocationTableNumber",
"alertCLocationTableVersion",
"areaLocation",
"alertCAreaExtension"
})
public class AlertCArea {
@XmlElement(required = true)
protected String alertCLocationCountryCode;
@XmlElement(required = true)
protected String alertCLocationTableNumber;
@XmlElement(required = true)
protected String alertCLocationTableVersion;
@XmlElement(required = true)
protected AlertCLocation areaLocation;
@XmlElement(name = "_alertCAreaExtension")
protected ExtensionType alertCAreaExtension;
/**
* Gets the value of the alertCLocationCountryCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAlertCLocationCountryCode() {
return alertCLocationCountryCode;
}
/**
* Sets the value of the alertCLocationCountryCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAlertCLocationCountryCode(String value) {
this.alertCLocationCountryCode = value;
}
/**
* Gets the value of the alertCLocationTableNumber property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAlertCLocationTableNumber() {
return alertCLocationTableNumber;
}
/**
* Sets the value of the alertCLocationTableNumber property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAlertCLocationTableNumber(String value) {
this.alertCLocationTableNumber = value;
}
/**
* Gets the value of the alertCLocationTableVersion property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAlertCLocationTableVersion() {
return alertCLocationTableVersion;
}
/**
* Sets the value of the alertCLocationTableVersion property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAlertCLocationTableVersion(String value) {
this.alertCLocationTableVersion = value;
}
/**
* Gets the value of the areaLocation property.
*
* @return
* possible object is
* {@link AlertCLocation }
*
*/
public AlertCLocation getAreaLocation() {
return areaLocation;
}
/**
* Sets the value of the areaLocation property.
*
* @param value
* allowed object is
* {@link AlertCLocation }
*
*/
public void setAreaLocation(AlertCLocation value) {
this.areaLocation = value;
}
/**
* Gets the value of the alertCAreaExtension property.
*
* @return
* possible object is
* {@link ExtensionType }
*
*/
public ExtensionType getAlertCAreaExtension() {
return alertCAreaExtension;
}
/**
* Sets the value of the alertCAreaExtension property.
*
* @param value
* allowed object is
* {@link ExtensionType }
*
*/
public void setAlertCAreaExtension(ExtensionType value) {
this.alertCAreaExtension = value;
}
}