
eu.datex2.schema._2._2_0.GroupOfParkingSites Maven / Gradle / Ivy
Show all versions of datex2-api Show documentation
package eu.datex2.schema._2._2_0;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for GroupOfParkingSites complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="GroupOfParkingSites">
* <complexContent>
* <extension base="{http://datex2.eu/schema/2/2_0}ParkingRecord">
* <sequence>
* <element name="groupOfParkingSitesType" type="{http://datex2.eu/schema/2/2_0}GroupOfParkingSitesTypeEnum" minOccurs="0"/>
* <element name="parkingSiteByReference" type="{http://datex2.eu/schema/2/2_0}_ParkingRecordVersionedReference" maxOccurs="unbounded" minOccurs="0"/>
* <element name="parkingSite" type="{http://datex2.eu/schema/2/2_0}ParkingSite" maxOccurs="unbounded" minOccurs="0"/>
* <element name="groupOfParkingSitesExtension" type="{http://datex2.eu/schema/2/2_0}_ExtensionType" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GroupOfParkingSites", propOrder = {
"groupOfParkingSitesType",
"parkingSiteByReference",
"parkingSite",
"groupOfParkingSitesExtension"
})
public class GroupOfParkingSites
extends ParkingRecord
{
@XmlSchemaType(name = "string")
protected GroupOfParkingSitesTypeEnum groupOfParkingSitesType;
protected List parkingSiteByReference;
protected List parkingSite;
protected ExtensionType groupOfParkingSitesExtension;
/**
* Gets the value of the groupOfParkingSitesType property.
*
* @return
* possible object is
* {@link GroupOfParkingSitesTypeEnum }
*
*/
public GroupOfParkingSitesTypeEnum getGroupOfParkingSitesType() {
return groupOfParkingSitesType;
}
/**
* Sets the value of the groupOfParkingSitesType property.
*
* @param value
* allowed object is
* {@link GroupOfParkingSitesTypeEnum }
*
*/
public void setGroupOfParkingSitesType(GroupOfParkingSitesTypeEnum value) {
this.groupOfParkingSitesType = value;
}
/**
* Gets the value of the parkingSiteByReference property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the parkingSiteByReference property.
*
*
* For example, to add a new item, do as follows:
*
* getParkingSiteByReference().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ParkingRecordVersionedReference }
*
*
*/
public List getParkingSiteByReference() {
if (parkingSiteByReference == null) {
parkingSiteByReference = new ArrayList();
}
return this.parkingSiteByReference;
}
/**
* Gets the value of the parkingSite property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the parkingSite property.
*
*
* For example, to add a new item, do as follows:
*
* getParkingSite().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ParkingSite }
*
*
*/
public List getParkingSite() {
if (parkingSite == null) {
parkingSite = new ArrayList();
}
return this.parkingSite;
}
/**
* Gets the value of the groupOfParkingSitesExtension property.
*
* @return
* possible object is
* {@link ExtensionType }
*
*/
public ExtensionType getGroupOfParkingSitesExtension() {
return groupOfParkingSitesExtension;
}
/**
* Sets the value of the groupOfParkingSitesExtension property.
*
* @param value
* allowed object is
* {@link ExtensionType }
*
*/
public void setGroupOfParkingSitesExtension(ExtensionType value) {
this.groupOfParkingSitesExtension = value;
}
}