![JAR search and dependency download from the Maven repository](/logo.png)
uk.org.siri.siri21.PlannedStopAssignmentStructure Maven / Gradle / Ivy
Show all versions of siri-java-model Show documentation
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2025.01.07 at 02:19:41 PM UTC
//
package uk.org.siri.siri21;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Type for assignment of a SCHEDULED STOP POINT to a physical location, in particular to a QUAY or BOARDING POSITION, according to the planned timetable. (since SIRI 2.0).
*
* Java class for PlannedStopAssignmentStructure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PlannedStopAssignmentStructure">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <choice>
* <sequence>
* <element name="AimedQuayRef" type="{http://www.siri.org.uk/siri}QuayRefStructure" minOccurs="0"/>
* <element name="AimedQuayName" type="{http://www.siri.org.uk/siri}NaturalLanguageStringStructure" maxOccurs="unbounded" minOccurs="0"/>
* <element ref="{http://www.siri.org.uk/siri}QuayType" minOccurs="0"/>
* </sequence>
* <sequence>
* <element name="AimedBoardingPositionRef" type="{http://www.siri.org.uk/siri}BoardingPositionRefStructure" minOccurs="0"/>
* <element name="AimedBoardingPositionName" type="{http://www.siri.org.uk/siri}NaturalLanguageStringStructure" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </choice>
* <element ref="{http://www.siri.org.uk/siri}AimedFlexibleArea" minOccurs="0"/>
* <element ref="{http://www.siri.org.uk/siri}AimedFlexibleAreaRef" minOccurs="0"/>
* <element ref="{http://www.siri.org.uk/siri}AimedLocationName" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PlannedStopAssignmentStructure", propOrder = {
"aimedBoardingPositionRef",
"aimedBoardingPositionNames",
"aimedQuayRef",
"aimedQuayNames",
"quayType",
"aimedFlexibleArea",
"aimedFlexibleAreaRef",
"aimedLocationNames"
})
public class PlannedStopAssignmentStructure
implements Serializable
{
@XmlElement(name = "AimedBoardingPositionRef")
protected BoardingPositionRefStructure aimedBoardingPositionRef;
@XmlElement(name = "AimedBoardingPositionName")
protected List aimedBoardingPositionNames;
@XmlElement(name = "AimedQuayRef")
protected QuayRefStructure aimedQuayRef;
@XmlElement(name = "AimedQuayName")
protected List aimedQuayNames;
@XmlElement(name = "QuayType")
@XmlSchemaType(name = "NMTOKEN")
protected TypeOfNestedQuayEnumeration quayType;
@XmlElement(name = "AimedFlexibleArea")
protected AimedFlexibleArea aimedFlexibleArea;
@XmlElement(name = "AimedFlexibleAreaRef")
protected AimedFlexibleAreaRef aimedFlexibleAreaRef;
@XmlElement(name = "AimedLocationName")
protected List aimedLocationNames;
/**
* Gets the value of the aimedBoardingPositionRef property.
*
* @return
* possible object is
* {@link BoardingPositionRefStructure }
*
*/
public BoardingPositionRefStructure getAimedBoardingPositionRef() {
return aimedBoardingPositionRef;
}
/**
* Sets the value of the aimedBoardingPositionRef property.
*
* @param value
* allowed object is
* {@link BoardingPositionRefStructure }
*
*/
public void setAimedBoardingPositionRef(BoardingPositionRefStructure value) {
this.aimedBoardingPositionRef = value;
}
/**
* Gets the value of the aimedBoardingPositionNames 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 Jakarta XML Binding object.
* This is why there is not a set
method for the aimedBoardingPositionNames property.
*
*
* For example, to add a new item, do as follows:
*
* getAimedBoardingPositionNames().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link NaturalLanguageStringStructure }
*
*
*/
public List getAimedBoardingPositionNames() {
if (aimedBoardingPositionNames == null) {
aimedBoardingPositionNames = new ArrayList();
}
return this.aimedBoardingPositionNames;
}
/**
* Gets the value of the aimedQuayRef property.
*
* @return
* possible object is
* {@link QuayRefStructure }
*
*/
public QuayRefStructure getAimedQuayRef() {
return aimedQuayRef;
}
/**
* Sets the value of the aimedQuayRef property.
*
* @param value
* allowed object is
* {@link QuayRefStructure }
*
*/
public void setAimedQuayRef(QuayRefStructure value) {
this.aimedQuayRef = value;
}
/**
* Gets the value of the aimedQuayNames 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 Jakarta XML Binding object.
* This is why there is not a set
method for the aimedQuayNames property.
*
*
* For example, to add a new item, do as follows:
*
* getAimedQuayNames().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link NaturalLanguageStringStructure }
*
*
*/
public List getAimedQuayNames() {
if (aimedQuayNames == null) {
aimedQuayNames = new ArrayList();
}
return this.aimedQuayNames;
}
/**
* Gets the value of the quayType property.
*
* @return
* possible object is
* {@link TypeOfNestedQuayEnumeration }
*
*/
public TypeOfNestedQuayEnumeration getQuayType() {
return quayType;
}
/**
* Sets the value of the quayType property.
*
* @param value
* allowed object is
* {@link TypeOfNestedQuayEnumeration }
*
*/
public void setQuayType(TypeOfNestedQuayEnumeration value) {
this.quayType = value;
}
/**
* Gets the value of the aimedFlexibleArea property.
*
* @return
* possible object is
* {@link AimedFlexibleArea }
*
*/
public AimedFlexibleArea getAimedFlexibleArea() {
return aimedFlexibleArea;
}
/**
* Sets the value of the aimedFlexibleArea property.
*
* @param value
* allowed object is
* {@link AimedFlexibleArea }
*
*/
public void setAimedFlexibleArea(AimedFlexibleArea value) {
this.aimedFlexibleArea = value;
}
/**
* Gets the value of the aimedFlexibleAreaRef property.
*
* @return
* possible object is
* {@link AimedFlexibleAreaRef }
*
*/
public AimedFlexibleAreaRef getAimedFlexibleAreaRef() {
return aimedFlexibleAreaRef;
}
/**
* Sets the value of the aimedFlexibleAreaRef property.
*
* @param value
* allowed object is
* {@link AimedFlexibleAreaRef }
*
*/
public void setAimedFlexibleAreaRef(AimedFlexibleAreaRef value) {
this.aimedFlexibleAreaRef = value;
}
/**
* Gets the value of the aimedLocationNames 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 Jakarta XML Binding object.
* This is why there is not a set
method for the aimedLocationNames property.
*
*
* For example, to add a new item, do as follows:
*
* getAimedLocationNames().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link NaturalLanguageStringStructure }
*
*
*/
public List getAimedLocationNames() {
if (aimedLocationNames == null) {
aimedLocationNames = new ArrayList();
}
return this.aimedLocationNames;
}
}