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

eu.datex2.schema._2._2_0.ParkingStatusColourMapping 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;


/**
 * 

Java class for ParkingStatusColourMapping complex type. * *

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

 * <complexType name="ParkingStatusColourMapping">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="parkingSiteStatus" type="{http://datex2.eu/schema/2/2_0}ParkingSiteStatusEnum"/>
 *         <element name="rgbColour" type="{http://datex2.eu/schema/2/2_0}RGBColour"/>
 *         <element name="parkingStatusColourMappingExtension" type="{http://datex2.eu/schema/2/2_0}_ExtensionType" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ParkingStatusColourMapping", propOrder = { "parkingSiteStatus", "rgbColour", "parkingStatusColourMappingExtension" }) public class ParkingStatusColourMapping { @XmlElement(required = true) @XmlSchemaType(name = "string") protected ParkingSiteStatusEnum parkingSiteStatus; @XmlElement(required = true) protected RGBColour rgbColour; protected ExtensionType parkingStatusColourMappingExtension; /** * Gets the value of the parkingSiteStatus property. * * @return * possible object is * {@link ParkingSiteStatusEnum } * */ public ParkingSiteStatusEnum getParkingSiteStatus() { return parkingSiteStatus; } /** * Sets the value of the parkingSiteStatus property. * * @param value * allowed object is * {@link ParkingSiteStatusEnum } * */ public void setParkingSiteStatus(ParkingSiteStatusEnum value) { this.parkingSiteStatus = value; } /** * Gets the value of the rgbColour property. * * @return * possible object is * {@link RGBColour } * */ public RGBColour getRgbColour() { return rgbColour; } /** * Sets the value of the rgbColour property. * * @param value * allowed object is * {@link RGBColour } * */ public void setRgbColour(RGBColour value) { this.rgbColour = value; } /** * Gets the value of the parkingStatusColourMappingExtension property. * * @return * possible object is * {@link ExtensionType } * */ public ExtensionType getParkingStatusColourMappingExtension() { return parkingStatusColourMappingExtension; } /** * Sets the value of the parkingStatusColourMappingExtension property. * * @param value * allowed object is * {@link ExtensionType } * */ public void setParkingStatusColourMappingExtension(ExtensionType value) { this.parkingStatusColourMappingExtension = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy