com.hubject.datex.energyinfrastructure.generated.location_referencing.OpenlrCircleLocationReference 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.location_referencing;
import java.math.BigInteger;
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;
import com.hubject.datex.energyinfrastructure.generated.common.ExtensionType;
/**
* Java class for OpenlrCircleLocationReference complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="OpenlrCircleLocationReference">
* <complexContent>
* <extension base="{http://datex2.eu/schema/3/locationReferencing}OpenlrAreaLocationReference">
* <sequence>
* <element name="openlrRadius" type="{http://datex2.eu/schema/3/common}MetresAsNonNegativeInteger"/>
* <element name="openlrGeoCoordinate" type="{http://datex2.eu/schema/3/locationReferencing}OpenlrGeoCoordinate"/>
* <element name="_openlrCircleLocationReferenceExtension" type="{http://datex2.eu/schema/3/common}_ExtensionType" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "OpenlrCircleLocationReference", propOrder = {
"openlrRadius",
"openlrGeoCoordinate",
"openlrCircleLocationReferenceExtension"
})
public class OpenlrCircleLocationReference
extends OpenlrAreaLocationReference
{
@XmlElement(required = true)
@XmlSchemaType(name = "nonNegativeInteger")
protected BigInteger openlrRadius;
@XmlElement(required = true)
protected OpenlrGeoCoordinate openlrGeoCoordinate;
@XmlElement(name = "_openlrCircleLocationReferenceExtension")
protected ExtensionType openlrCircleLocationReferenceExtension;
/**
* Gets the value of the openlrRadius property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getOpenlrRadius() {
return openlrRadius;
}
/**
* Sets the value of the openlrRadius property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setOpenlrRadius(BigInteger value) {
this.openlrRadius = value;
}
/**
* Gets the value of the openlrGeoCoordinate property.
*
* @return
* possible object is
* {@link OpenlrGeoCoordinate }
*
*/
public OpenlrGeoCoordinate getOpenlrGeoCoordinate() {
return openlrGeoCoordinate;
}
/**
* Sets the value of the openlrGeoCoordinate property.
*
* @param value
* allowed object is
* {@link OpenlrGeoCoordinate }
*
*/
public void setOpenlrGeoCoordinate(OpenlrGeoCoordinate value) {
this.openlrGeoCoordinate = value;
}
/**
* Gets the value of the openlrCircleLocationReferenceExtension property.
*
* @return
* possible object is
* {@link ExtensionType }
*
*/
public ExtensionType getOpenlrCircleLocationReferenceExtension() {
return openlrCircleLocationReferenceExtension;
}
/**
* Sets the value of the openlrCircleLocationReferenceExtension property.
*
* @param value
* allowed object is
* {@link ExtensionType }
*
*/
public void setOpenlrCircleLocationReferenceExtension(ExtensionType value) {
this.openlrCircleLocationReferenceExtension = value;
}
}