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

uk.org.siri.siri20.AffectedOperatorStructure 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.XmlType;


/**
 * Type for Annotated reference to an OPERATOR affected by a SITUATION.
 * 
 * 

Java class for AffectedOperatorStructure complex type. * *

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

 * <complexType name="AffectedOperatorStructure">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="OperatorRef" type="{http://www.siri.org.uk/siri}OperatorRefStructure" minOccurs="0"/>
 *         <element name="OperatorName" type="{http://www.siri.org.uk/siri}NaturalLanguageStringStructure" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="OperatorShortName" type="{http://www.siri.org.uk/siri}NaturalLanguageStringStructure" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="OperationalUnitRef" type="{http://www.siri.org.uk/siri}OperationalUnitRefStructure" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{http://www.siri.org.uk/siri}Extensions" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AffectedOperatorStructure", propOrder = { "operatorRef", "operatorNames", "operatorShortNames", "operationalUnitReves", "extensions" }) public class AffectedOperatorStructure implements Serializable { @XmlElement(name = "OperatorRef") protected OperatorRefStructure operatorRef; @XmlElement(name = "OperatorName") protected List operatorNames; @XmlElement(name = "OperatorShortName") protected List operatorShortNames; @XmlElement(name = "OperationalUnitRef") protected List operationalUnitReves; @XmlElement(name = "Extensions") protected Extensions extensions; /** * Gets the value of the operatorRef property. * * @return * possible object is * {@link OperatorRefStructure } * */ public OperatorRefStructure getOperatorRef() { return operatorRef; } /** * Sets the value of the operatorRef property. * * @param value * allowed object is * {@link OperatorRefStructure } * */ public void setOperatorRef(OperatorRefStructure value) { this.operatorRef = value; } /** * Gets the value of the operatorNames 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 operatorNames property. * *

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

     *    getOperatorNames().add(newItem);
     * 
* * *

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

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

     *    getOperatorShortNames().add(newItem);
     * 
* * *

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

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

     *    getOperationalUnitReves().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link OperationalUnitRefStructure } * * */ public List getOperationalUnitReves() { if (operationalUnitReves == null) { operationalUnitReves = new ArrayList(); } return this.operationalUnitReves; } /** * 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; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy