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

eu.datex2.schema._2._2_0.AxleWeight 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 AxleWeight complex type. * *

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

 * <complexType name="AxleWeight">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="axlePositionIdentifier" type="{http://datex2.eu/schema/2/2_0}NonNegativeInteger"/>
 *         <element name="axleWeight" type="{http://datex2.eu/schema/2/2_0}Tonnes" minOccurs="0"/>
 *         <element name="maximumPermittedAxleWeight" type="{http://datex2.eu/schema/2/2_0}Tonnes" minOccurs="0"/>
 *         <element name="axleWeightExtension" type="{http://datex2.eu/schema/2/2_0}_ExtensionType" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AxleWeight", propOrder = { "axlePositionIdentifier", "axleWeight", "maximumPermittedAxleWeight", "axleWeightExtension" }) public class AxleWeight { @XmlElement(required = true, type = String.class) @XmlJavaTypeAdapter(Adapter2 .class) @XmlSchemaType(name = "nonNegativeInteger") protected Long axlePositionIdentifier; protected Float axleWeight; protected Float maximumPermittedAxleWeight; protected ExtensionType axleWeightExtension; /** * Gets the value of the axlePositionIdentifier property. * * @return * possible object is * {@link String } * */ public Long getAxlePositionIdentifier() { return axlePositionIdentifier; } /** * Sets the value of the axlePositionIdentifier property. * * @param value * allowed object is * {@link String } * */ public void setAxlePositionIdentifier(Long value) { this.axlePositionIdentifier = value; } /** * Gets the value of the axleWeight property. * * @return * possible object is * {@link Float } * */ public Float getAxleWeight() { return axleWeight; } /** * Sets the value of the axleWeight property. * * @param value * allowed object is * {@link Float } * */ public void setAxleWeight(Float value) { this.axleWeight = value; } /** * Gets the value of the maximumPermittedAxleWeight property. * * @return * possible object is * {@link Float } * */ public Float getMaximumPermittedAxleWeight() { return maximumPermittedAxleWeight; } /** * Sets the value of the maximumPermittedAxleWeight property. * * @param value * allowed object is * {@link Float } * */ public void setMaximumPermittedAxleWeight(Float value) { this.maximumPermittedAxleWeight = value; } /** * Gets the value of the axleWeightExtension property. * * @return * possible object is * {@link ExtensionType } * */ public ExtensionType getAxleWeightExtension() { return axleWeightExtension; } /** * Sets the value of the axleWeightExtension property. * * @param value * allowed object is * {@link ExtensionType } * */ public void setAxleWeightExtension(ExtensionType value) { this.axleWeightExtension = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy