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

uk.org.siri.siri21.StopLineNoticeCancellation 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 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 Cancellation of an earlier Stop Line Notice.
 * 
 * 

Java class for StopLineNoticeCancellationStructure complex type. * *

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

 * <complexType name="StopLineNoticeCancellationStructure">
 *   <complexContent>
 *     <extension base="{http://www.siri.org.uk/siri}AbstractReferencingItemStructure">
 *       <sequence>
 *         <element name="MonitoringRef" type="{http://www.siri.org.uk/siri}MonitoringRefStructure"/>
 *         <group ref="{http://www.siri.org.uk/siri}LineIdentityGroup"/>
 *         <element ref="{http://www.siri.org.uk/siri}Extensions" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "StopLineNoticeCancellationStructure", propOrder = { "monitoringRef", "lineRef", "directionRef", "extensions" }) @XmlRootElement(name = "StopLineNoticeCancellation") public class StopLineNoticeCancellation extends AbstractReferencingItemStructure 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 = "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 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