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

eu.datex2.schema._2._2_0.VmsManagedLogicalLocation Maven / Gradle / Ivy

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;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.w3._2001.xmlschema.Adapter2;


/**
 * 

Java class for VmsManagedLogicalLocation complex type. * *

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

 * <complexType name="VmsManagedLogicalLocation">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="managedLogicalLocation" type="{http://datex2.eu/schema/2/2_0}MultilingualString" minOccurs="0"/>
 *         <element name="distanceFromLogicalLocation" type="{http://datex2.eu/schema/2/2_0}MetresAsNonNegativeInteger" minOccurs="0"/>
 *         <element name="managedLocation" type="{http://datex2.eu/schema/2/2_0}Location" minOccurs="0"/>
 *         <element name="vmsManagedLogicalLocationExtension" type="{http://datex2.eu/schema/2/2_0}_ExtensionType" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VmsManagedLogicalLocation", propOrder = { "managedLogicalLocation", "distanceFromLogicalLocation", "managedLocation", "vmsManagedLogicalLocationExtension" }) public class VmsManagedLogicalLocation { protected MultilingualString managedLogicalLocation; @XmlElement(type = String.class) @XmlJavaTypeAdapter(Adapter2 .class) @XmlSchemaType(name = "nonNegativeInteger") protected Long distanceFromLogicalLocation; protected Location managedLocation; protected ExtensionType vmsManagedLogicalLocationExtension; /** * Gets the value of the managedLogicalLocation property. * * @return * possible object is * {@link MultilingualString } * */ public MultilingualString getManagedLogicalLocation() { return managedLogicalLocation; } /** * Sets the value of the managedLogicalLocation property. * * @param value * allowed object is * {@link MultilingualString } * */ public void setManagedLogicalLocation(MultilingualString value) { this.managedLogicalLocation = value; } /** * Gets the value of the distanceFromLogicalLocation property. * * @return * possible object is * {@link String } * */ public Long getDistanceFromLogicalLocation() { return distanceFromLogicalLocation; } /** * Sets the value of the distanceFromLogicalLocation property. * * @param value * allowed object is * {@link String } * */ public void setDistanceFromLogicalLocation(Long value) { this.distanceFromLogicalLocation = value; } /** * Gets the value of the managedLocation property. * * @return * possible object is * {@link Location } * */ public Location getManagedLocation() { return managedLocation; } /** * Sets the value of the managedLocation property. * * @param value * allowed object is * {@link Location } * */ public void setManagedLocation(Location value) { this.managedLocation = value; } /** * Gets the value of the vmsManagedLogicalLocationExtension property. * * @return * possible object is * {@link ExtensionType } * */ public ExtensionType getVmsManagedLogicalLocationExtension() { return vmsManagedLogicalLocationExtension; } /** * Sets the value of the vmsManagedLogicalLocationExtension property. * * @param value * allowed object is * {@link ExtensionType } * */ public void setVmsManagedLogicalLocationExtension(ExtensionType value) { this.vmsManagedLogicalLocationExtension = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy