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

uk.org.siri.siri21.AffectedInterchangeStructure 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.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;


/**
 * Information about a SERVICE JOURNEY INTERCHANGE at CONNECTION link from a given SCHEDULED STOP POINT.
 * 
 * 

Java class for AffectedInterchangeStructure complex type. * *

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

 * <complexType name="AffectedInterchangeStructure">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="InterchangeRef" type="{http://www.siri.org.uk/siri}InterchangeRefStructure" minOccurs="0"/>
 *         <element name="InterchangeStopPointRef" type="{http://www.siri.org.uk/siri}StopPointRefStructure" minOccurs="0"/>
 *         <element name="InterchangeStopPointName" type="{http://www.siri.org.uk/siri}NaturalLanguageStringStructure" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="ConnectingVehicleJourneyRef" type="{http://www.siri.org.uk/siri}DatedVehicleJourneyRefStructure" minOccurs="0"/>
 *         <element ref="{http://www.siri.org.uk/siri}InterchangeStatusType" minOccurs="0"/>
 *         <element name="ConnectionLink" type="{http://www.siri.org.uk/siri}AffectedConnectionLinkStructure" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{http://www.siri.org.uk/siri}Extensions" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AffectedInterchangeStructure", propOrder = { "interchangeRef", "interchangeStopPointRef", "interchangeStopPointNames", "connectingVehicleJourneyRef", "interchangeStatusType", "connectionLinks", "extensions" }) public class AffectedInterchangeStructure implements Serializable { @XmlElement(name = "InterchangeRef") protected InterchangeRef interchangeRef; @XmlElement(name = "InterchangeStopPointRef") protected StopPointRefStructure interchangeStopPointRef; @XmlElement(name = "InterchangeStopPointName") protected List interchangeStopPointNames; @XmlElement(name = "ConnectingVehicleJourneyRef") protected DatedVehicleJourneyRef connectingVehicleJourneyRef; @XmlElement(name = "InterchangeStatusType", defaultValue = "unknown") @XmlSchemaType(name = "NMTOKEN") protected InterchangeStatusEnumeration interchangeStatusType; @XmlElement(name = "ConnectionLink") protected List connectionLinks; @XmlElement(name = "Extensions") protected Extensions extensions; /** * Gets the value of the interchangeRef property. * * @return * possible object is * {@link InterchangeRef } * */ public InterchangeRef getInterchangeRef() { return interchangeRef; } /** * Sets the value of the interchangeRef property. * * @param value * allowed object is * {@link InterchangeRef } * */ public void setInterchangeRef(InterchangeRef value) { this.interchangeRef = value; } /** * Gets the value of the interchangeStopPointRef property. * * @return * possible object is * {@link StopPointRefStructure } * */ public StopPointRefStructure getInterchangeStopPointRef() { return interchangeStopPointRef; } /** * Sets the value of the interchangeStopPointRef property. * * @param value * allowed object is * {@link StopPointRefStructure } * */ public void setInterchangeStopPointRef(StopPointRefStructure value) { this.interchangeStopPointRef = value; } /** * Gets the value of the interchangeStopPointNames 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 interchangeStopPointNames property. * *

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

     *    getInterchangeStopPointNames().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link NaturalLanguageStringStructure } * * */ public List getInterchangeStopPointNames() { if (interchangeStopPointNames == null) { interchangeStopPointNames = new ArrayList(); } return this.interchangeStopPointNames; } /** * Gets the value of the connectingVehicleJourneyRef property. * * @return * possible object is * {@link DatedVehicleJourneyRef } * */ public DatedVehicleJourneyRef getConnectingVehicleJourneyRef() { return connectingVehicleJourneyRef; } /** * Sets the value of the connectingVehicleJourneyRef property. * * @param value * allowed object is * {@link DatedVehicleJourneyRef } * */ public void setConnectingVehicleJourneyRef(DatedVehicleJourneyRef value) { this.connectingVehicleJourneyRef = value; } /** * Gets the value of the interchangeStatusType property. * * @return * possible object is * {@link InterchangeStatusEnumeration } * */ public InterchangeStatusEnumeration getInterchangeStatusType() { return interchangeStatusType; } /** * Sets the value of the interchangeStatusType property. * * @param value * allowed object is * {@link InterchangeStatusEnumeration } * */ public void setInterchangeStatusType(InterchangeStatusEnumeration value) { this.interchangeStatusType = value; } /** * Gets the value of the connectionLinks 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 connectionLinks property. * *

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

     *    getConnectionLinks().add(newItem);
     * 
* * *

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