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

uk.org.siri.siri21.StopLineNotice Maven / Gradle / Ivy

The newest version!
//
// 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.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;


/**
 * Type for a Stop Line Notice.
 * 
 * 

Java class for StopLineNoticeStructure complex type. * *

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

 * <complexType name="StopLineNoticeStructure">
 *   <complexContent>
 *     <extension base="{http://www.siri.org.uk/siri}AbstractIdentifiedItemStructure">
 *       <sequence>
 *         <element name="MonitoringRef" type="{http://www.siri.org.uk/siri}MonitoringRefStructure"/>
 *         <group ref="{http://www.siri.org.uk/siri}LineIdentityGroup"/>
 *         <element name="PublishedLineName" type="{http://www.siri.org.uk/siri}NaturalLanguageStringStructure" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="LineNote" type="{http://www.siri.org.uk/siri}NaturalLanguageStringStructure" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="DeliveryVariant" type="{http://www.siri.org.uk/siri}DeliveryVariantStructure" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{http://www.siri.org.uk/siri}SituationRef" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{http://www.siri.org.uk/siri}Extensions" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "StopLineNoticeStructure", propOrder = { "monitoringRef", "lineRef", "directionRef", "publishedLineNames", "lineNotes", "deliveryVariants", "situationReves", "extensions" }) @XmlRootElement(name = "StopLineNotice") public class StopLineNotice extends AbstractIdentifiedItemStructure implements Serializable { @XmlElement(name = "MonitoringRef", required = true) protected MonitoringRefStructure monitoringRef; @XmlElement(name = "LineRef", required = true) protected LineRef lineRef; @XmlElement(name = "DirectionRef", required = true) protected DirectionRefStructure directionRef; @XmlElement(name = "PublishedLineName") protected List publishedLineNames; @XmlElement(name = "LineNote") protected List lineNotes; @XmlElement(name = "DeliveryVariant") protected List deliveryVariants; @XmlElement(name = "SituationRef") protected List situationReves; @XmlElement(name = "Extensions") protected Extensions extensions; /** * Gets the value of the monitoringRef property. * * @return * possible object is * {@link MonitoringRefStructure } * */ public MonitoringRefStructure getMonitoringRef() { return monitoringRef; } /** * Sets the value of the monitoringRef property. * * @param value * allowed object is * {@link MonitoringRefStructure } * */ public void setMonitoringRef(MonitoringRefStructure value) { this.monitoringRef = value; } /** * Gets the value of the lineRef property. * * @return * possible object is * {@link LineRef } * */ public LineRef getLineRef() { return lineRef; } /** * Sets the value of the lineRef property. * * @param value * allowed object is * {@link LineRef } * */ public void setLineRef(LineRef value) { this.lineRef = value; } /** * Gets the value of the directionRef property. * * @return * possible object is * {@link DirectionRefStructure } * */ public DirectionRefStructure getDirectionRef() { return directionRef; } /** * Sets the value of the directionRef property. * * @param value * allowed object is * {@link DirectionRefStructure } * */ public void setDirectionRef(DirectionRefStructure value) { this.directionRef = value; } /** * Gets the value of the publishedLineNames 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 publishedLineNames property. * *

* For example, to add a new item, do as follows: *

     *    getPublishedLineNames().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link NaturalLanguageStringStructure } * * */ public List getPublishedLineNames() { if (publishedLineNames == null) { publishedLineNames = new ArrayList(); } return this.publishedLineNames; } /** * Gets the value of the lineNotes 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 lineNotes property. * *

* For example, to add a new item, do as follows: *

     *    getLineNotes().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link NaturalLanguageStringStructure } * * */ public List getLineNotes() { if (lineNotes == null) { lineNotes = new ArrayList(); } return this.lineNotes; } /** * Gets the value of the deliveryVariants 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 deliveryVariants property. * *

* For example, to add a new item, do as follows: *

     *    getDeliveryVariants().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link DeliveryVariantStructure } * * */ public List getDeliveryVariants() { if (deliveryVariants == null) { deliveryVariants = new ArrayList(); } return this.deliveryVariants; } /** * Gets the value of the situationReves 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 situationReves property. * *

* For example, to add a new item, do as follows: *

     *    getSituationReves().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SituationRef } * * */ public List getSituationReves() { if (situationReves == null) { situationReves = new ArrayList(); } return this.situationReves; } /** * 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; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy