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

uk.org.siri.siri20.ContextualisedConnectionLinkStructure 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 java.time.Duration;
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;
import jakarta.xml.bind.annotation.adapters.CollapsedStringAdapter;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.entur.siri.adapter.DurationXmlAdapter;


/**
 * Connection between two stops within a connection area. Used within the context of one or other end.
 * 
 * 

Java class for ContextualisedConnectionLinkStructure complex type. * *

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

 * <complexType name="ContextualisedConnectionLinkStructure">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="ConnectionLinkCode" type="{http://www.siri.org.uk/siri}ConnectionLinkCodeType" minOccurs="0"/>
 *         <element ref="{http://www.siri.org.uk/siri}StopPointRef" minOccurs="0"/>
 *         <element ref="{http://www.siri.org.uk/siri}StopPointName" minOccurs="0"/>
 *         <group ref="{http://www.siri.org.uk/siri}ConnectionDurationGroup"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ContextualisedConnectionLinkStructure", propOrder = { "connectionLinkCode", "stopPointRef", "stopPointName", "defaultDuration", "frequentTravellerDuration", "occasionalTravellerDuration", "impairedAccessDuration" }) public class ContextualisedConnectionLinkStructure implements Serializable { @XmlElement(name = "ConnectionLinkCode") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NMTOKEN") protected String connectionLinkCode; @XmlElement(name = "StopPointRef") protected StopPointRef stopPointRef; @XmlElement(name = "StopPointName") protected NaturalLanguageStringStructure stopPointName; @XmlElement(name = "DefaultDuration", type = String.class) @XmlJavaTypeAdapter(DurationXmlAdapter.class) @XmlSchemaType(name = "duration") protected Duration defaultDuration; @XmlElement(name = "FrequentTravellerDuration", type = String.class) @XmlJavaTypeAdapter(DurationXmlAdapter.class) @XmlSchemaType(name = "duration") protected Duration frequentTravellerDuration; @XmlElement(name = "OccasionalTravellerDuration", type = String.class) @XmlJavaTypeAdapter(DurationXmlAdapter.class) @XmlSchemaType(name = "duration") protected Duration occasionalTravellerDuration; @XmlElement(name = "ImpairedAccessDuration", type = String.class) @XmlJavaTypeAdapter(DurationXmlAdapter.class) @XmlSchemaType(name = "duration") protected Duration impairedAccessDuration; /** * Gets the value of the connectionLinkCode property. * * @return * possible object is * {@link String } * */ public String getConnectionLinkCode() { return connectionLinkCode; } /** * Sets the value of the connectionLinkCode property. * * @param value * allowed object is * {@link String } * */ public void setConnectionLinkCode(String value) { this.connectionLinkCode = value; } /** * Gets the value of the stopPointRef property. * * @return * possible object is * {@link StopPointRef } * */ public StopPointRef getStopPointRef() { return stopPointRef; } /** * Sets the value of the stopPointRef property. * * @param value * allowed object is * {@link StopPointRef } * */ public void setStopPointRef(StopPointRef value) { this.stopPointRef = value; } /** * Gets the value of the stopPointName property. * * @return * possible object is * {@link NaturalLanguageStringStructure } * */ public NaturalLanguageStringStructure getStopPointName() { return stopPointName; } /** * Sets the value of the stopPointName property. * * @param value * allowed object is * {@link NaturalLanguageStringStructure } * */ public void setStopPointName(NaturalLanguageStringStructure value) { this.stopPointName = value; } /** * Gets the value of the defaultDuration property. * * @return * possible object is * {@link String } * */ public Duration getDefaultDuration() { return defaultDuration; } /** * Sets the value of the defaultDuration property. * * @param value * allowed object is * {@link String } * */ public void setDefaultDuration(Duration value) { this.defaultDuration = value; } /** * Gets the value of the frequentTravellerDuration property. * * @return * possible object is * {@link String } * */ public Duration getFrequentTravellerDuration() { return frequentTravellerDuration; } /** * Sets the value of the frequentTravellerDuration property. * * @param value * allowed object is * {@link String } * */ public void setFrequentTravellerDuration(Duration value) { this.frequentTravellerDuration = value; } /** * Gets the value of the occasionalTravellerDuration property. * * @return * possible object is * {@link String } * */ public Duration getOccasionalTravellerDuration() { return occasionalTravellerDuration; } /** * Sets the value of the occasionalTravellerDuration property. * * @param value * allowed object is * {@link String } * */ public void setOccasionalTravellerDuration(Duration value) { this.occasionalTravellerDuration = value; } /** * Gets the value of the impairedAccessDuration property. * * @return * possible object is * {@link String } * */ public Duration getImpairedAccessDuration() { return impairedAccessDuration; } /** * Sets the value of the impairedAccessDuration property. * * @param value * allowed object is * {@link String } * */ public void setImpairedAccessDuration(Duration value) { this.impairedAccessDuration = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy