![JAR search and dependency download from the Maven repository](/logo.png)
uk.org.siri.siri21.AffectedFacilityStructure 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 information about a FACILITY affected by an SITUATION. (since SIRI 2.0)
*
* Java class for AffectedFacilityStructure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AffectedFacilityStructure">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://www.siri.org.uk/siri}FacilityRef" minOccurs="0"/>
* <element name="StartStopPointRef" type="{http://www.siri.org.uk/siri}StopPointRefStructure" minOccurs="0"/>
* <element name="EndStopPointRef" type="{http://www.siri.org.uk/siri}StopPointRefStructure" minOccurs="0"/>
* <element name="FacilityName" type="{http://www.siri.org.uk/siri}NaturalLanguageStringStructure" maxOccurs="unbounded" minOccurs="0"/>
* <element name="FacilityStatus" type="{http://www.siri.org.uk/siri}FacilityStatusEnumeration" maxOccurs="unbounded" minOccurs="0"/>
* <element ref="{http://www.siri.org.uk/siri}Extensions" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AffectedFacilityStructure", propOrder = {
"facilityRef",
"startStopPointRef",
"endStopPointRef",
"facilityNames",
"facilityStatuses",
"extensions"
})
public class AffectedFacilityStructure
implements Serializable
{
@XmlElement(name = "FacilityRef")
protected FacilityRef facilityRef;
@XmlElement(name = "StartStopPointRef")
protected StopPointRefStructure startStopPointRef;
@XmlElement(name = "EndStopPointRef")
protected StopPointRefStructure endStopPointRef;
@XmlElement(name = "FacilityName")
protected List facilityNames;
@XmlElement(name = "FacilityStatus")
@XmlSchemaType(name = "NMTOKEN")
protected List facilityStatuses;
@XmlElement(name = "Extensions")
protected List extensions;
/**
* Gets the value of the facilityRef property.
*
* @return
* possible object is
* {@link FacilityRef }
*
*/
public FacilityRef getFacilityRef() {
return facilityRef;
}
/**
* Sets the value of the facilityRef property.
*
* @param value
* allowed object is
* {@link FacilityRef }
*
*/
public void setFacilityRef(FacilityRef value) {
this.facilityRef = value;
}
/**
* Gets the value of the startStopPointRef property.
*
* @return
* possible object is
* {@link StopPointRefStructure }
*
*/
public StopPointRefStructure getStartStopPointRef() {
return startStopPointRef;
}
/**
* Sets the value of the startStopPointRef property.
*
* @param value
* allowed object is
* {@link StopPointRefStructure }
*
*/
public void setStartStopPointRef(StopPointRefStructure value) {
this.startStopPointRef = value;
}
/**
* Gets the value of the endStopPointRef property.
*
* @return
* possible object is
* {@link StopPointRefStructure }
*
*/
public StopPointRefStructure getEndStopPointRef() {
return endStopPointRef;
}
/**
* Sets the value of the endStopPointRef property.
*
* @param value
* allowed object is
* {@link StopPointRefStructure }
*
*/
public void setEndStopPointRef(StopPointRefStructure value) {
this.endStopPointRef = value;
}
/**
* Gets the value of the facilityNames 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 facilityNames property.
*
*
* For example, to add a new item, do as follows:
*
* getFacilityNames().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link NaturalLanguageStringStructure }
*
*
*/
public List getFacilityNames() {
if (facilityNames == null) {
facilityNames = new ArrayList();
}
return this.facilityNames;
}
/**
* Gets the value of the facilityStatuses 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 facilityStatuses property.
*
*
* For example, to add a new item, do as follows:
*
* getFacilityStatuses().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link FacilityStatusEnumeration }
*
*
*/
public List getFacilityStatuses() {
if (facilityStatuses == null) {
facilityStatuses = new ArrayList();
}
return this.facilityStatuses;
}
/**
* Gets the value of the extensions 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 extensions property.
*
*
* For example, to add a new item, do as follows:
*
* getExtensions().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Extensions }
*
*
*/
public List getExtensions() {
if (extensions == null) {
extensions = new ArrayList();
}
return this.extensions;
}
}