![JAR search and dependency download from the Maven repository](/logo.png)
uk.org.siri.siri21.StopMonitoringDeliveryStructure 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.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.CollapsedStringAdapter;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Type for Delivery for Stop Monitoring Service.
*
* Java class for StopMonitoringDeliveryStructure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="StopMonitoringDeliveryStructure">
* <complexContent>
* <extension base="{http://www.siri.org.uk/siri}AbstractServiceDeliveryStructure">
* <sequence>
* <group ref="{http://www.siri.org.uk/siri}StopMonitoringPayloadGroup"/>
* <element name="Note" type="{http://www.siri.org.uk/siri}NaturalLanguageStringStructure" maxOccurs="unbounded" minOccurs="0"/>
* <element ref="{http://www.siri.org.uk/siri}Extensions" minOccurs="0"/>
* </sequence>
* <attribute name="version" type="{http://www.siri.org.uk/siri}VersionString" default="2.1" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "StopMonitoringDeliveryStructure", propOrder = {
"monitoringReves",
"monitoringNames",
"monitoredStopVisits",
"monitoredStopVisitCancellations",
"stopLineNotices",
"stopLineNoticeCancellations",
"stopNotices",
"stopNoticeCancellations",
"serviceExceptions",
"notes",
"extensions"
})
public class StopMonitoringDeliveryStructure
extends AbstractServiceDeliveryStructure
implements Serializable
{
@XmlElement(name = "MonitoringRef")
protected List monitoringReves;
@XmlElement(name = "MonitoringName")
protected List monitoringNames;
@XmlElement(name = "MonitoredStopVisit")
protected List monitoredStopVisits;
@XmlElement(name = "MonitoredStopVisitCancellation")
protected List monitoredStopVisitCancellations;
@XmlElement(name = "StopLineNotice")
protected List stopLineNotices;
@XmlElement(name = "StopLineNoticeCancellation")
protected List stopLineNoticeCancellations;
@XmlElement(name = "StopNotice")
protected List stopNotices;
@XmlElement(name = "StopNoticeCancellation")
protected List stopNoticeCancellations;
@XmlElement(name = "ServiceException")
protected List serviceExceptions;
@XmlElement(name = "Note")
protected List notes;
@XmlElement(name = "Extensions")
protected Extensions extensions;
@XmlAttribute(name = "version")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String version;
/**
* Gets the value of the monitoringReves 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 monitoringReves property.
*
*
* For example, to add a new item, do as follows:
*
* getMonitoringReves().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link MonitoringRefStructure }
*
*
*/
public List getMonitoringReves() {
if (monitoringReves == null) {
monitoringReves = new ArrayList();
}
return this.monitoringReves;
}
/**
* Gets the value of the monitoringNames 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 monitoringNames property.
*
*
* For example, to add a new item, do as follows:
*
* getMonitoringNames().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link NaturalLanguageStringStructure }
*
*
*/
public List getMonitoringNames() {
if (monitoringNames == null) {
monitoringNames = new ArrayList();
}
return this.monitoringNames;
}
/**
* Gets the value of the monitoredStopVisits 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 monitoredStopVisits property.
*
*
* For example, to add a new item, do as follows:
*
* getMonitoredStopVisits().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link MonitoredStopVisit }
*
*
*/
public List getMonitoredStopVisits() {
if (monitoredStopVisits == null) {
monitoredStopVisits = new ArrayList();
}
return this.monitoredStopVisits;
}
/**
* Gets the value of the monitoredStopVisitCancellations 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 monitoredStopVisitCancellations property.
*
*
* For example, to add a new item, do as follows:
*
* getMonitoredStopVisitCancellations().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link MonitoredStopVisitCancellation }
*
*
*/
public List getMonitoredStopVisitCancellations() {
if (monitoredStopVisitCancellations == null) {
monitoredStopVisitCancellations = new ArrayList();
}
return this.monitoredStopVisitCancellations;
}
/**
* Gets the value of the stopLineNotices 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 stopLineNotices property.
*
*
* For example, to add a new item, do as follows:
*
* getStopLineNotices().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link StopLineNotice }
*
*
*/
public List getStopLineNotices() {
if (stopLineNotices == null) {
stopLineNotices = new ArrayList();
}
return this.stopLineNotices;
}
/**
* Gets the value of the stopLineNoticeCancellations 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 stopLineNoticeCancellations property.
*
*
* For example, to add a new item, do as follows:
*
* getStopLineNoticeCancellations().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link StopLineNoticeCancellation }
*
*
*/
public List getStopLineNoticeCancellations() {
if (stopLineNoticeCancellations == null) {
stopLineNoticeCancellations = new ArrayList();
}
return this.stopLineNoticeCancellations;
}
/**
* Notice for stop. (SIRI 2.0++) Gets the value of the stopNotices 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 stopNotices property.
*
*
* For example, to add a new item, do as follows:
*
* getStopNotices().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link StopNotice }
*
*
*/
public List getStopNotices() {
if (stopNotices == null) {
stopNotices = new ArrayList();
}
return this.stopNotices;
}
/**
* Reference to an previously communicated Notice which should now be removed from the arrival/departure board for the stop. (SIRI 2.0++) Gets the value of the stopNoticeCancellations 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 stopNoticeCancellations property.
*
*
* For example, to add a new item, do as follows:
*
* getStopNoticeCancellations().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link StopNoticeCancellation }
*
*
*/
public List getStopNoticeCancellations() {
if (stopNoticeCancellations == null) {
stopNoticeCancellations = new ArrayList();
}
return this.stopNoticeCancellations;
}
/**
* Information about unavailablilty of some or all services at the SIRI 2.0 Gets the value of the serviceExceptions 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 serviceExceptions property.
*
*
* For example, to add a new item, do as follows:
*
* getServiceExceptions().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ServiceException }
*
*
*/
public List getServiceExceptions() {
if (serviceExceptions == null) {
serviceExceptions = new ArrayList();
}
return this.serviceExceptions;
}
/**
* Gets the value of the notes 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 notes property.
*
*
* For example, to add a new item, do as follows:
*
* getNotes().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link NaturalLanguageStringStructure }
*
*
*/
public List getNotes() {
if (notes == null) {
notes = new ArrayList();
}
return this.notes;
}
/**
* Gets the value of the extensions property.
*
* @return
* possible object is
* {@link Extensions }
*
*/
public Extensions getExtensions() {
return extensions;
}
/**
* Sets the value of the extensions property.
*
* @param value
* allowed object is
* {@link Extensions }
*
*/
public void setExtensions(Extensions value) {
this.extensions = value;
}
/**
* Gets the value of the version property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersion() {
if (version == null) {
return "2.1";
} else {
return version;
}
}
/**
* Sets the value of the version property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersion(String value) {
this.version = value;
}
}