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

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


/**
 * Type for information about a FACILITY affected by an SITUATION. (+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 StopPointRef startStopPointRef; @XmlElement(name = "EndStopPointRef") protected StopPointRef 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 StopPointRef } * */ public StopPointRef getStartStopPointRef() { return startStopPointRef; } /** * Sets the value of the startStopPointRef property. * * @param value * allowed object is * {@link StopPointRef } * */ public void setStartStopPointRef(StopPointRef value) { this.startStopPointRef = value; } /** * Gets the value of the endStopPointRef property. * * @return * possible object is * {@link StopPointRef } * */ public StopPointRef getEndStopPointRef() { return endStopPointRef; } /** * Sets the value of the endStopPointRef property. * * @param value * allowed object is * {@link StopPointRef } * */ public void setEndStopPointRef(StopPointRef 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; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy