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

uk.org.siri.siri21.EstimatedServiceJourneyInterchange 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.math.BigInteger;
import java.time.Duration;
import java.time.ZonedDateTime;
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.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.CollapsedStringAdapter;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.entur.siri.adapter.DurationXmlAdapter;
import org.w3._2001.xmlschema.Adapter1;


/**
 * Type for Estimated SERVICE JOURNEY INTERCHANGE.
 * 
 * 

Java class for EstimatedServiceJourneyInterchangeStructure complex type. * *

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

 * <complexType name="EstimatedServiceJourneyInterchangeStructure">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <choice>
 *           <element ref="{http://www.siri.org.uk/siri}InterchangeRef"/>
 *           <sequence>
 *             <element name="InterchangeCode" type="{http://www.siri.org.uk/siri}InterchangeCodeType" minOccurs="0"/>
 *             <element name="ConnectionLinkRef" type="{http://www.siri.org.uk/siri}ConnectionLinkRefStructure" minOccurs="0"/>
 *             <element name="FeederJourneyRef" type="{http://www.siri.org.uk/siri}ConnectingJourneyRefStructure"/>
 *             <element name="FeederArrivalStopRef" type="{http://www.siri.org.uk/siri}StopPointRefStructure" minOccurs="0"/>
 *             <element name="FeederVisitNumber" type="{http://www.siri.org.uk/siri}VisitNumberType" minOccurs="0"/>
 *             <element name="FeederStopOrder" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" minOccurs="0"/>
 *             <element name="AimedArrivalTimeOfFeeder" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *             <element name="DistributorJourneyRef" type="{http://www.siri.org.uk/siri}ConnectingJourneyRefStructure"/>
 *             <element name="DistributorDepartureStopRef" type="{http://www.siri.org.uk/siri}StopPointRefStructure" minOccurs="0"/>
 *             <element name="DistributorVisitNumber" type="{http://www.siri.org.uk/siri}VisitNumberType" minOccurs="0"/>
 *             <element name="DistributorStopOrder" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" minOccurs="0"/>
 *             <element name="AimedDepartureTimeOfDistributor" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *             <group ref="{http://www.siri.org.uk/siri}InterchangePropertyGroup" minOccurs="0"/>
 *           </sequence>
 *         </choice>
 *         <element name="InterchangeStatus" type="{http://www.siri.org.uk/siri}InterchangeStatusEnumeration" minOccurs="0"/>
 *         <choice>
 *           <element name="WillNotWait" type="{http://www.siri.org.uk/siri}EmptyType"/>
 *           <element name="WillWait" type="{http://www.siri.org.uk/siri}WillWaitStructure"/>
 *         </choice>
 *         <element name="ExpectedArrivalTimeOfFeeder" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="ExpectedDepartureTimeOfDistributor" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="ConnectionMonitoring" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <group ref="{http://www.siri.org.uk/siri}InterchangeTimesGroup" minOccurs="0"/>
 *         <element ref="{http://www.siri.org.uk/siri}Extensions" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "EstimatedServiceJourneyInterchangeStructure", propOrder = { "interchangeCode", "connectionLinkRef", "feederJourneyRef", "feederArrivalStopRef", "feederVisitNumber", "feederStopOrder", "aimedArrivalTimeOfFeeder", "distributorJourneyRef", "distributorDepartureStopRef", "distributorVisitNumber", "distributorStopOrder", "aimedDepartureTimeOfDistributor", "staySeated", "guaranteed", "advertised", "interchangeRef", "interchangeStatus", "willWait", "willNotWait", "expectedArrivalTimeOfFeeder", "expectedDepartureTimeOfDistributor", "connectionMonitoring", "standardWaitTime", "maximumWaitTime", "maximumAutomaticWaitTime", "standardTransferTime", "minimumTransferTime", "maximumTransferTime", "extensions" }) @XmlRootElement(name = "EstimatedServiceJourneyInterchange") public class EstimatedServiceJourneyInterchange implements Serializable { @XmlElement(name = "InterchangeCode") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NMTOKEN") protected String interchangeCode; @XmlElement(name = "ConnectionLinkRef") protected ConnectionLinkRef connectionLinkRef; @XmlElement(name = "FeederJourneyRef") protected ConnectingJourneyRefStructure feederJourneyRef; @XmlElement(name = "FeederArrivalStopRef") protected StopPointRefStructure feederArrivalStopRef; @XmlElement(name = "FeederVisitNumber") @XmlSchemaType(name = "positiveInteger") protected BigInteger feederVisitNumber; @XmlElement(name = "FeederStopOrder") @XmlSchemaType(name = "positiveInteger") protected BigInteger feederStopOrder; @XmlElement(name = "AimedArrivalTimeOfFeeder", type = String.class) @XmlJavaTypeAdapter(Adapter1 .class) @XmlSchemaType(name = "dateTime") protected ZonedDateTime aimedArrivalTimeOfFeeder; @XmlElement(name = "DistributorJourneyRef") protected ConnectingJourneyRefStructure distributorJourneyRef; @XmlElement(name = "DistributorDepartureStopRef") protected StopPointRefStructure distributorDepartureStopRef; @XmlElement(name = "DistributorVisitNumber") @XmlSchemaType(name = "positiveInteger") protected BigInteger distributorVisitNumber; @XmlElement(name = "DistributorStopOrder") @XmlSchemaType(name = "positiveInteger") protected BigInteger distributorStopOrder; @XmlElement(name = "AimedDepartureTimeOfDistributor", type = String.class) @XmlJavaTypeAdapter(Adapter1 .class) @XmlSchemaType(name = "dateTime") protected ZonedDateTime aimedDepartureTimeOfDistributor; @XmlElement(name = "StaySeated", defaultValue = "false") protected Boolean staySeated; @XmlElement(name = "Guaranteed", defaultValue = "false") protected Boolean guaranteed; @XmlElement(name = "Advertised", defaultValue = "false") protected Boolean advertised; @XmlElement(name = "InterchangeRef") protected InterchangeRef interchangeRef; @XmlElement(name = "InterchangeStatus") @XmlSchemaType(name = "NMTOKEN") protected InterchangeStatusEnumeration interchangeStatus; @XmlElement(name = "WillWait") protected WillWaitStructure willWait; @XmlElement(name = "WillNotWait") protected String willNotWait; @XmlElement(name = "ExpectedArrivalTimeOfFeeder", type = String.class) @XmlJavaTypeAdapter(Adapter1 .class) @XmlSchemaType(name = "dateTime") protected ZonedDateTime expectedArrivalTimeOfFeeder; @XmlElement(name = "ExpectedDepartureTimeOfDistributor", type = String.class) @XmlJavaTypeAdapter(Adapter1 .class) @XmlSchemaType(name = "dateTime") protected ZonedDateTime expectedDepartureTimeOfDistributor; @XmlElement(name = "ConnectionMonitoring") protected Boolean connectionMonitoring; @XmlElement(name = "StandardWaitTime", type = String.class) @XmlJavaTypeAdapter(DurationXmlAdapter.class) @XmlSchemaType(name = "duration") protected Duration standardWaitTime; @XmlElement(name = "MaximumWaitTime", type = String.class) @XmlJavaTypeAdapter(DurationXmlAdapter.class) @XmlSchemaType(name = "duration") protected Duration maximumWaitTime; @XmlElement(name = "MaximumAutomaticWaitTime", type = String.class) @XmlJavaTypeAdapter(DurationXmlAdapter.class) @XmlSchemaType(name = "duration") protected Duration maximumAutomaticWaitTime; @XmlElement(name = "StandardTransferTime", type = String.class) @XmlJavaTypeAdapter(DurationXmlAdapter.class) @XmlSchemaType(name = "duration") protected Duration standardTransferTime; @XmlElement(name = "MinimumTransferTime", type = String.class) @XmlJavaTypeAdapter(DurationXmlAdapter.class) @XmlSchemaType(name = "duration") protected Duration minimumTransferTime; @XmlElement(name = "MaximumTransferTime", type = String.class) @XmlJavaTypeAdapter(DurationXmlAdapter.class) @XmlSchemaType(name = "duration") protected Duration maximumTransferTime; @XmlElement(name = "Extensions") protected Extensions extensions; /** * Gets the value of the interchangeCode property. * * @return * possible object is * {@link String } * */ public String getInterchangeCode() { return interchangeCode; } /** * Sets the value of the interchangeCode property. * * @param value * allowed object is * {@link String } * */ public void setInterchangeCode(String value) { this.interchangeCode = value; } /** * Gets the value of the connectionLinkRef property. * * @return * possible object is * {@link ConnectionLinkRef } * */ public ConnectionLinkRef getConnectionLinkRef() { return connectionLinkRef; } /** * Sets the value of the connectionLinkRef property. * * @param value * allowed object is * {@link ConnectionLinkRef } * */ public void setConnectionLinkRef(ConnectionLinkRef value) { this.connectionLinkRef = value; } /** * Gets the value of the feederJourneyRef property. * * @return * possible object is * {@link ConnectingJourneyRefStructure } * */ public ConnectingJourneyRefStructure getFeederJourneyRef() { return feederJourneyRef; } /** * Sets the value of the feederJourneyRef property. * * @param value * allowed object is * {@link ConnectingJourneyRefStructure } * */ public void setFeederJourneyRef(ConnectingJourneyRefStructure value) { this.feederJourneyRef = value; } /** * Gets the value of the feederArrivalStopRef property. * * @return * possible object is * {@link StopPointRefStructure } * */ public StopPointRefStructure getFeederArrivalStopRef() { return feederArrivalStopRef; } /** * Sets the value of the feederArrivalStopRef property. * * @param value * allowed object is * {@link StopPointRefStructure } * */ public void setFeederArrivalStopRef(StopPointRefStructure value) { this.feederArrivalStopRef = value; } /** * Gets the value of the feederVisitNumber property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getFeederVisitNumber() { return feederVisitNumber; } /** * Sets the value of the feederVisitNumber property. * * @param value * allowed object is * {@link BigInteger } * */ public void setFeederVisitNumber(BigInteger value) { this.feederVisitNumber = value; } /** * Gets the value of the feederStopOrder property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getFeederStopOrder() { return feederStopOrder; } /** * Sets the value of the feederStopOrder property. * * @param value * allowed object is * {@link BigInteger } * */ public void setFeederStopOrder(BigInteger value) { this.feederStopOrder = value; } /** * Gets the value of the aimedArrivalTimeOfFeeder property. * * @return * possible object is * {@link String } * */ public ZonedDateTime getAimedArrivalTimeOfFeeder() { return aimedArrivalTimeOfFeeder; } /** * Sets the value of the aimedArrivalTimeOfFeeder property. * * @param value * allowed object is * {@link String } * */ public void setAimedArrivalTimeOfFeeder(ZonedDateTime value) { this.aimedArrivalTimeOfFeeder = value; } /** * Gets the value of the distributorJourneyRef property. * * @return * possible object is * {@link ConnectingJourneyRefStructure } * */ public ConnectingJourneyRefStructure getDistributorJourneyRef() { return distributorJourneyRef; } /** * Sets the value of the distributorJourneyRef property. * * @param value * allowed object is * {@link ConnectingJourneyRefStructure } * */ public void setDistributorJourneyRef(ConnectingJourneyRefStructure value) { this.distributorJourneyRef = value; } /** * Gets the value of the distributorDepartureStopRef property. * * @return * possible object is * {@link StopPointRefStructure } * */ public StopPointRefStructure getDistributorDepartureStopRef() { return distributorDepartureStopRef; } /** * Sets the value of the distributorDepartureStopRef property. * * @param value * allowed object is * {@link StopPointRefStructure } * */ public void setDistributorDepartureStopRef(StopPointRefStructure value) { this.distributorDepartureStopRef = value; } /** * Gets the value of the distributorVisitNumber property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getDistributorVisitNumber() { return distributorVisitNumber; } /** * Sets the value of the distributorVisitNumber property. * * @param value * allowed object is * {@link BigInteger } * */ public void setDistributorVisitNumber(BigInteger value) { this.distributorVisitNumber = value; } /** * Gets the value of the distributorStopOrder property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getDistributorStopOrder() { return distributorStopOrder; } /** * Sets the value of the distributorStopOrder property. * * @param value * allowed object is * {@link BigInteger } * */ public void setDistributorStopOrder(BigInteger value) { this.distributorStopOrder = value; } /** * Gets the value of the aimedDepartureTimeOfDistributor property. * * @return * possible object is * {@link String } * */ public ZonedDateTime getAimedDepartureTimeOfDistributor() { return aimedDepartureTimeOfDistributor; } /** * Sets the value of the aimedDepartureTimeOfDistributor property. * * @param value * allowed object is * {@link String } * */ public void setAimedDepartureTimeOfDistributor(ZonedDateTime value) { this.aimedDepartureTimeOfDistributor = value; } /** * Gets the value of the staySeated property. * * @return * possible object is * {@link Boolean } * */ public Boolean isStaySeated() { return staySeated; } /** * Sets the value of the staySeated property. * * @param value * allowed object is * {@link Boolean } * */ public void setStaySeated(Boolean value) { this.staySeated = value; } /** * Gets the value of the guaranteed property. * * @return * possible object is * {@link Boolean } * */ public Boolean isGuaranteed() { return guaranteed; } /** * Sets the value of the guaranteed property. * * @param value * allowed object is * {@link Boolean } * */ public void setGuaranteed(Boolean value) { this.guaranteed = value; } /** * Gets the value of the advertised property. * * @return * possible object is * {@link Boolean } * */ public Boolean isAdvertised() { return advertised; } /** * Sets the value of the advertised property. * * @param value * allowed object is * {@link Boolean } * */ public void setAdvertised(Boolean value) { this.advertised = value; } /** * 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 interchangeStatus property. * * @return * possible object is * {@link InterchangeStatusEnumeration } * */ public InterchangeStatusEnumeration getInterchangeStatus() { return interchangeStatus; } /** * Sets the value of the interchangeStatus property. * * @param value * allowed object is * {@link InterchangeStatusEnumeration } * */ public void setInterchangeStatus(InterchangeStatusEnumeration value) { this.interchangeStatus = value; } /** * Gets the value of the willWait property. * * @return * possible object is * {@link WillWaitStructure } * */ public WillWaitStructure getWillWait() { return willWait; } /** * Sets the value of the willWait property. * * @param value * allowed object is * {@link WillWaitStructure } * */ public void setWillWait(WillWaitStructure value) { this.willWait = value; } /** * Gets the value of the willNotWait property. * * @return * possible object is * {@link String } * */ public String getWillNotWait() { return willNotWait; } /** * Sets the value of the willNotWait property. * * @param value * allowed object is * {@link String } * */ public void setWillNotWait(String value) { this.willNotWait = value; } /** * Gets the value of the expectedArrivalTimeOfFeeder property. * * @return * possible object is * {@link String } * */ public ZonedDateTime getExpectedArrivalTimeOfFeeder() { return expectedArrivalTimeOfFeeder; } /** * Sets the value of the expectedArrivalTimeOfFeeder property. * * @param value * allowed object is * {@link String } * */ public void setExpectedArrivalTimeOfFeeder(ZonedDateTime value) { this.expectedArrivalTimeOfFeeder = value; } /** * Gets the value of the expectedDepartureTimeOfDistributor property. * * @return * possible object is * {@link String } * */ public ZonedDateTime getExpectedDepartureTimeOfDistributor() { return expectedDepartureTimeOfDistributor; } /** * Sets the value of the expectedDepartureTimeOfDistributor property. * * @param value * allowed object is * {@link String } * */ public void setExpectedDepartureTimeOfDistributor(ZonedDateTime value) { this.expectedDepartureTimeOfDistributor = value; } /** * Gets the value of the connectionMonitoring property. * * @return * possible object is * {@link Boolean } * */ public Boolean isConnectionMonitoring() { return connectionMonitoring; } /** * Sets the value of the connectionMonitoring property. * * @param value * allowed object is * {@link Boolean } * */ public void setConnectionMonitoring(Boolean value) { this.connectionMonitoring = value; } /** * Gets the value of the standardWaitTime property. * * @return * possible object is * {@link String } * */ public Duration getStandardWaitTime() { return standardWaitTime; } /** * Sets the value of the standardWaitTime property. * * @param value * allowed object is * {@link String } * */ public void setStandardWaitTime(Duration value) { this.standardWaitTime = value; } /** * Gets the value of the maximumWaitTime property. * * @return * possible object is * {@link String } * */ public Duration getMaximumWaitTime() { return maximumWaitTime; } /** * Sets the value of the maximumWaitTime property. * * @param value * allowed object is * {@link String } * */ public void setMaximumWaitTime(Duration value) { this.maximumWaitTime = value; } /** * Gets the value of the maximumAutomaticWaitTime property. * * @return * possible object is * {@link String } * */ public Duration getMaximumAutomaticWaitTime() { return maximumAutomaticWaitTime; } /** * Sets the value of the maximumAutomaticWaitTime property. * * @param value * allowed object is * {@link String } * */ public void setMaximumAutomaticWaitTime(Duration value) { this.maximumAutomaticWaitTime = value; } /** * Gets the value of the standardTransferTime property. * * @return * possible object is * {@link String } * */ public Duration getStandardTransferTime() { return standardTransferTime; } /** * Sets the value of the standardTransferTime property. * * @param value * allowed object is * {@link String } * */ public void setStandardTransferTime(Duration value) { this.standardTransferTime = value; } /** * Gets the value of the minimumTransferTime property. * * @return * possible object is * {@link String } * */ public Duration getMinimumTransferTime() { return minimumTransferTime; } /** * Sets the value of the minimumTransferTime property. * * @param value * allowed object is * {@link String } * */ public void setMinimumTransferTime(Duration value) { this.minimumTransferTime = value; } /** * Gets the value of the maximumTransferTime property. * * @return * possible object is * {@link String } * */ public Duration getMaximumTransferTime() { return maximumTransferTime; } /** * Sets the value of the maximumTransferTime property. * * @param value * allowed object is * {@link String } * */ public void setMaximumTransferTime(Duration value) { this.maximumTransferTime = 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