![JAR search and dependency download from the Maven repository](/logo.png)
uk.org.siri.siri21.AffectedConnectionLinkStructure Maven / Gradle / Ivy
Show all versions of siri-java-model Show documentation
//
// 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;
/**
* Type for a reference Information about a CONNECTION link from a given stop that is affected by a SITUATION.
*
* Java class for AffectedConnectionLinkStructure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AffectedConnectionLinkStructure">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ConnectionLinkRef" type="{http://www.siri.org.uk/siri}ConnectionLinkRefStructure" maxOccurs="unbounded" minOccurs="0"/>
* <element name="ConnectionName" type="{http://www.siri.org.uk/siri}NaturalLanguageStringStructure" minOccurs="0"/>
* <choice minOccurs="0">
* <element name="AllLines" type="{http://www.siri.org.uk/siri}EmptyType"/>
* <sequence>
* <group ref="{http://www.siri.org.uk/siri}LineGroup" minOccurs="0"/>
* <element name="ConnectingStopPointRef" type="{http://www.siri.org.uk/siri}StopPointRefStructure" minOccurs="0"/>
* <element name="ConnectingStopPointName" type="{http://www.siri.org.uk/siri}NaturalLanguageStringStructure" maxOccurs="unbounded" minOccurs="0"/>
* <element name="ConnectingZoneRef" type="{http://www.siri.org.uk/siri}ZoneRefStructure" minOccurs="0"/>
* </sequence>
* </choice>
* <element name="ConnectionDirection" type="{http://www.siri.org.uk/siri}ConnectionDirectionEnumeration" minOccurs="0"/>
* <element name="AffectedPathLink" type="{http://www.siri.org.uk/siri}AffectedPathLinkStructure" maxOccurs="unbounded" minOccurs="0"/>
* <element ref="{http://www.siri.org.uk/siri}Extensions" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AffectedConnectionLinkStructure", propOrder = {
"connectionLinkReves",
"connectionName",
"lineRef",
"publishedLineNames",
"connectingStopPointRef",
"connectingStopPointNames",
"connectingZoneRef",
"allLines",
"connectionDirection",
"affectedPathLinks",
"extensions"
})
public class AffectedConnectionLinkStructure
implements Serializable
{
@XmlElement(name = "ConnectionLinkRef")
protected List connectionLinkReves;
@XmlElement(name = "ConnectionName")
protected NaturalLanguageStringStructure connectionName;
@XmlElement(name = "LineRef")
protected LineRef lineRef;
@XmlElement(name = "PublishedLineName")
protected List publishedLineNames;
@XmlElement(name = "ConnectingStopPointRef")
protected StopPointRefStructure connectingStopPointRef;
@XmlElement(name = "ConnectingStopPointName")
protected List connectingStopPointNames;
@XmlElement(name = "ConnectingZoneRef")
protected ZoneRefStructure connectingZoneRef;
@XmlElement(name = "AllLines")
protected String allLines;
@XmlElement(name = "ConnectionDirection", defaultValue = "both")
@XmlSchemaType(name = "NMTOKEN")
protected ConnectionDirectionEnumeration connectionDirection;
@XmlElement(name = "AffectedPathLink")
protected List affectedPathLinks;
@XmlElement(name = "Extensions")
protected Extensions extensions;
/**
* Gets the value of the connectionLinkReves 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 connectionLinkReves property.
*
*
* For example, to add a new item, do as follows:
*
* getConnectionLinkReves().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link ConnectionLinkRef }
*
*
*/
public List getConnectionLinkReves() {
if (connectionLinkReves == null) {
connectionLinkReves = new ArrayList();
}
return this.connectionLinkReves;
}
/**
* Gets the value of the connectionName property.
*
* @return
* possible object is
* {@link NaturalLanguageStringStructure }
*
*/
public NaturalLanguageStringStructure getConnectionName() {
return connectionName;
}
/**
* Sets the value of the connectionName property.
*
* @param value
* allowed object is
* {@link NaturalLanguageStringStructure }
*
*/
public void setConnectionName(NaturalLanguageStringStructure value) {
this.connectionName = 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 publishedLineNames 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 publishedLineNames property.
*
*
* For example, to add a new item, do as follows:
*
* getPublishedLineNames().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link NaturalLanguageStringStructure }
*
*
*/
public List getPublishedLineNames() {
if (publishedLineNames == null) {
publishedLineNames = new ArrayList();
}
return this.publishedLineNames;
}
/**
* Gets the value of the connectingStopPointRef property.
*
* @return
* possible object is
* {@link StopPointRefStructure }
*
*/
public StopPointRefStructure getConnectingStopPointRef() {
return connectingStopPointRef;
}
/**
* Sets the value of the connectingStopPointRef property.
*
* @param value
* allowed object is
* {@link StopPointRefStructure }
*
*/
public void setConnectingStopPointRef(StopPointRefStructure value) {
this.connectingStopPointRef = value;
}
/**
* Gets the value of the connectingStopPointNames 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 connectingStopPointNames property.
*
*
* For example, to add a new item, do as follows:
*
* getConnectingStopPointNames().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link NaturalLanguageStringStructure }
*
*
*/
public List getConnectingStopPointNames() {
if (connectingStopPointNames == null) {
connectingStopPointNames = new ArrayList();
}
return this.connectingStopPointNames;
}
/**
* Gets the value of the connectingZoneRef property.
*
* @return
* possible object is
* {@link ZoneRefStructure }
*
*/
public ZoneRefStructure getConnectingZoneRef() {
return connectingZoneRef;
}
/**
* Sets the value of the connectingZoneRef property.
*
* @param value
* allowed object is
* {@link ZoneRefStructure }
*
*/
public void setConnectingZoneRef(ZoneRefStructure value) {
this.connectingZoneRef = value;
}
/**
* Gets the value of the allLines property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAllLines() {
return allLines;
}
/**
* Sets the value of the allLines property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAllLines(String value) {
this.allLines = value;
}
/**
* Gets the value of the connectionDirection property.
*
* @return
* possible object is
* {@link ConnectionDirectionEnumeration }
*
*/
public ConnectionDirectionEnumeration getConnectionDirection() {
return connectionDirection;
}
/**
* Sets the value of the connectionDirection property.
*
* @param value
* allowed object is
* {@link ConnectionDirectionEnumeration }
*
*/
public void setConnectionDirection(ConnectionDirectionEnumeration value) {
this.connectionDirection = value;
}
/**
* Gets the value of the affectedPathLinks 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 affectedPathLinks property.
*
*
* For example, to add a new item, do as follows:
*
* getAffectedPathLinks().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link AffectedPathLinkStructure }
*
*
*/
public List getAffectedPathLinks() {
if (affectedPathLinks == null) {
affectedPathLinks = new ArrayList();
}
return this.affectedPathLinks;
}
/**
* 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;
}
}