
eu.datex2.schema._2._2_0.SpecialLocationParkingSite Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datex2-api Show documentation
Show all versions of datex2-api Show documentation
DATEX II API for Java, allows to create DATEX II suppliers and clients.
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 SpecialLocationParkingSite complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SpecialLocationParkingSite">
* <complexContent>
* <extension base="{http://datex2.eu/schema/2/2_0}ParkingSite">
* <sequence>
* <element name="parkingSpecialLocation" type="{http://datex2.eu/schema/2/2_0}ParkingSpecialLocationEnum"/>
* <element name="parkingOtherSpecialLocation" type="{http://datex2.eu/schema/2/2_0}MultilingualString" minOccurs="0"/>
* <element name="specialLocationParkingSiteExtension" type="{http://datex2.eu/schema/2/2_0}_ExtensionType" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SpecialLocationParkingSite", propOrder = {
"parkingSpecialLocation",
"parkingOtherSpecialLocation",
"specialLocationParkingSiteExtension"
})
public class SpecialLocationParkingSite
extends ParkingSite
{
@XmlElement(required = true)
@XmlSchemaType(name = "string")
protected ParkingSpecialLocationEnum parkingSpecialLocation;
protected MultilingualString parkingOtherSpecialLocation;
protected ExtensionType specialLocationParkingSiteExtension;
/**
* Gets the value of the parkingSpecialLocation property.
*
* @return
* possible object is
* {@link ParkingSpecialLocationEnum }
*
*/
public ParkingSpecialLocationEnum getParkingSpecialLocation() {
return parkingSpecialLocation;
}
/**
* Sets the value of the parkingSpecialLocation property.
*
* @param value
* allowed object is
* {@link ParkingSpecialLocationEnum }
*
*/
public void setParkingSpecialLocation(ParkingSpecialLocationEnum value) {
this.parkingSpecialLocation = value;
}
/**
* Gets the value of the parkingOtherSpecialLocation property.
*
* @return
* possible object is
* {@link MultilingualString }
*
*/
public MultilingualString getParkingOtherSpecialLocation() {
return parkingOtherSpecialLocation;
}
/**
* Sets the value of the parkingOtherSpecialLocation property.
*
* @param value
* allowed object is
* {@link MultilingualString }
*
*/
public void setParkingOtherSpecialLocation(MultilingualString value) {
this.parkingOtherSpecialLocation = value;
}
/**
* Gets the value of the specialLocationParkingSiteExtension property.
*
* @return
* possible object is
* {@link ExtensionType }
*
*/
public ExtensionType getSpecialLocationParkingSiteExtension() {
return specialLocationParkingSiteExtension;
}
/**
* Sets the value of the specialLocationParkingSiteExtension property.
*
* @param value
* allowed object is
* {@link ExtensionType }
*
*/
public void setSpecialLocationParkingSiteExtension(ExtensionType value) {
this.specialLocationParkingSiteExtension = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy