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

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


/**
 * View of a SCHEDULED CONNECTION LINK description.
 * 
 * 

Java class for AnnotatedConnectionLinkStructure complex type. * *

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

 * <complexType name="AnnotatedConnectionLinkStructure">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="ConnectionLinkRef" type="{http://www.siri.org.uk/siri}ConnectionLinkRefStructure"/>
 *         <element name="FeederStopPointRef" type="{http://www.siri.org.uk/siri}StopPointRefStructure" minOccurs="0"/>
 *         <element name="DistributorStopPointRef" type="{http://www.siri.org.uk/siri}StopPointRefStructure" minOccurs="0"/>
 *         <element name="Monitored" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="ConnectionLinkName" type="{http://www.siri.org.uk/siri}NaturalLanguageStringStructure" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="FeederStopPointName" type="{http://www.siri.org.uk/siri}NaturalLanguageStringStructure" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="DistributorStopPointName" type="{http://www.siri.org.uk/siri}NaturalLanguageStringStructure" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="Url" type="{http://www.w3.org/2001/XMLSchema}anyURI" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AnnotatedConnectionLinkStructure", propOrder = { "connectionLinkRef", "feederStopPointRef", "distributorStopPointRef", "monitored", "connectionLinkNames", "feederStopPointNames", "distributorStopPointNames", "url" }) @XmlRootElement(name = "AnnotatedConnectionLinkRef") public class AnnotatedConnectionLinkRef implements Serializable { @XmlElement(name = "ConnectionLinkRef", required = true) protected ConnectionLinkRef connectionLinkRef; @XmlElement(name = "FeederStopPointRef") protected StopPointRef feederStopPointRef; @XmlElement(name = "DistributorStopPointRef") protected StopPointRef distributorStopPointRef; @XmlElement(name = "Monitored", defaultValue = "true") protected Boolean monitored; @XmlElement(name = "ConnectionLinkName") protected List connectionLinkNames; @XmlElement(name = "FeederStopPointName") protected List feederStopPointNames; @XmlElement(name = "DistributorStopPointName") protected List distributorStopPointNames; @XmlElement(name = "Url") @XmlSchemaType(name = "anyURI") protected String url; /** * 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 feederStopPointRef property. * * @return * possible object is * {@link StopPointRef } * */ public StopPointRef getFeederStopPointRef() { return feederStopPointRef; } /** * Sets the value of the feederStopPointRef property. * * @param value * allowed object is * {@link StopPointRef } * */ public void setFeederStopPointRef(StopPointRef value) { this.feederStopPointRef = value; } /** * Gets the value of the distributorStopPointRef property. * * @return * possible object is * {@link StopPointRef } * */ public StopPointRef getDistributorStopPointRef() { return distributorStopPointRef; } /** * Sets the value of the distributorStopPointRef property. * * @param value * allowed object is * {@link StopPointRef } * */ public void setDistributorStopPointRef(StopPointRef value) { this.distributorStopPointRef = value; } /** * Gets the value of the monitored property. * * @return * possible object is * {@link Boolean } * */ public Boolean isMonitored() { return monitored; } /** * Sets the value of the monitored property. * * @param value * allowed object is * {@link Boolean } * */ public void setMonitored(Boolean value) { this.monitored = value; } /** * Gets the value of the connectionLinkNames 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 connectionLinkNames property. * *

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

     *    getConnectionLinkNames().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link NaturalLanguageStringStructure } * * */ public List getConnectionLinkNames() { if (connectionLinkNames == null) { connectionLinkNames = new ArrayList(); } return this.connectionLinkNames; } /** * Gets the value of the feederStopPointNames 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 feederStopPointNames property. * *

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

     *    getFeederStopPointNames().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link NaturalLanguageStringStructure } * * */ public List getFeederStopPointNames() { if (feederStopPointNames == null) { feederStopPointNames = new ArrayList(); } return this.feederStopPointNames; } /** * Gets the value of the distributorStopPointNames 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 distributorStopPointNames property. * *

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

     *    getDistributorStopPointNames().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link NaturalLanguageStringStructure } * * */ public List getDistributorStopPointNames() { if (distributorStopPointNames == null) { distributorStopPointNames = new ArrayList(); } return this.distributorStopPointNames; } /** * Gets the value of the url property. * * @return * possible object is * {@link String } * */ public String getUrl() { return url; } /** * Sets the value of the url property. * * @param value * allowed object is * {@link String } * */ public void setUrl(String value) { this.url = value; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy