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

uk.org.siri.siri20.ConnectionTimetableRequestStructure 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:39 PM UTC 
//


package uk.org.siri.siri20;

import java.io.Serializable;
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.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.CollapsedStringAdapter;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * Type for Request for Connection Timetable Service.
 * 
 * 

Java class for ConnectionTimetableRequestStructure complex type. * *

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

 * <complexType name="ConnectionTimetableRequestStructure">
 *   <complexContent>
 *     <extension base="{http://www.siri.org.uk/siri}AbstractFunctionalServiceRequestStructure">
 *       <sequence>
 *         <group ref="{http://www.siri.org.uk/siri}ConnectionTimetableTopicGroup"/>
 *         <group ref="{http://www.siri.org.uk/siri}ConnectionTimetableRequestPolicyGroup"/>
 *         <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.0" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ConnectionTimetableRequestStructure", propOrder = { "arrivalWindow", "connectionLinkRef", "lineRef", "directionRef", "language", "includeTranslations", "extensions" }) public class ConnectionTimetableRequestStructure extends AbstractFunctionalServiceRequestStructure implements Serializable { @XmlElement(name = "ArrivalWindow") protected ClosedTimestampRangeStructure arrivalWindow; @XmlElement(name = "ConnectionLinkRef", required = true) protected ConnectionLinkRef connectionLinkRef; @XmlElement(name = "LineRef") protected LineRef lineRef; @XmlElement(name = "DirectionRef") protected DirectionRefStructure directionRef; @XmlElement(name = "Language", defaultValue = "en") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "language") protected String language; @XmlElement(name = "IncludeTranslations") protected Boolean includeTranslations; @XmlElement(name = "Extensions") protected Extensions extensions; @XmlAttribute(name = "version") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String version; /** * Gets the value of the arrivalWindow property. * * @return * possible object is * {@link ClosedTimestampRangeStructure } * */ public ClosedTimestampRangeStructure getArrivalWindow() { return arrivalWindow; } /** * Sets the value of the arrivalWindow property. * * @param value * allowed object is * {@link ClosedTimestampRangeStructure } * */ public void setArrivalWindow(ClosedTimestampRangeStructure value) { this.arrivalWindow = 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 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 language property. * * @return * possible object is * {@link String } * */ public String getLanguage() { return language; } /** * Sets the value of the language property. * * @param value * allowed object is * {@link String } * */ public void setLanguage(String value) { this.language = value; } /** * Gets the value of the includeTranslations property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIncludeTranslations() { return includeTranslations; } /** * Sets the value of the includeTranslations property. * * @param value * allowed object is * {@link Boolean } * */ public void setIncludeTranslations(Boolean value) { this.includeTranslations = 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; } /** * Gets the value of the version property. * * @return * possible object is * {@link String } * */ public String getVersion() { if (version == null) { return "2.0"; } 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; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy