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

uk.org.siri.siri20.ServiceDeliveryStructure 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.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;


/**
 * Type for SIRI Service Delivery.
 * 
 * 

Java class for ServiceDeliveryStructure complex type. * *

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

 * <complexType name="ServiceDeliveryStructure">
 *   <complexContent>
 *     <extension base="{http://www.siri.org.uk/siri}ProducerResponseStructure">
 *       <sequence>
 *         <group ref="{http://www.siri.org.uk/siri}ServiceDeliveryBodyGroup"/>
 *       </sequence>
 *       <attribute name="srsName" type="{http://www.siri.org.uk/siri}SrsNameType" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ServiceDeliveryStructure", propOrder = { "status", "errorCondition", "moreData", "situationExchangeDeliveries", "includedSituationExchangeDeliveries", "facilityMonitoringDeliveries", "generalMessageDeliveries", "connectionMonitoringDistributorDeliveries", "connectionMonitoringFeederDeliveries", "connectionTimetableDeliveries", "vehicleMonitoringDeliveries", "stopMonitoringDeliveries", "stopTimetableDeliveries", "estimatedTimetableDeliveries", "productionTimetableDeliveries" }) @XmlSeeAlso({ ServiceDelivery.class }) public class ServiceDeliveryStructure extends ProducerResponseStructure implements Serializable { @XmlElement(name = "Status", defaultValue = "true") protected Boolean status; @XmlElement(name = "ErrorCondition") protected ServiceDeliveryStructure.ErrorCondition errorCondition; @XmlElement(name = "MoreData", defaultValue = "false") protected Boolean moreData; @XmlElement(name = "SituationExchangeDelivery") protected List situationExchangeDeliveries; @XmlElement(name = "IncludedSituationExchangeDelivery") protected List includedSituationExchangeDeliveries; @XmlElement(name = "FacilityMonitoringDelivery") protected List facilityMonitoringDeliveries; @XmlElement(name = "GeneralMessageDelivery") protected List generalMessageDeliveries; @XmlElement(name = "ConnectionMonitoringDistributorDelivery") protected List connectionMonitoringDistributorDeliveries; @XmlElement(name = "ConnectionMonitoringFeederDelivery") protected List connectionMonitoringFeederDeliveries; @XmlElement(name = "ConnectionTimetableDelivery") protected List connectionTimetableDeliveries; @XmlElement(name = "VehicleMonitoringDelivery") protected List vehicleMonitoringDeliveries; @XmlElement(name = "StopMonitoringDelivery") protected List stopMonitoringDeliveries; @XmlElement(name = "StopTimetableDelivery") protected List stopTimetableDeliveries; @XmlElement(name = "EstimatedTimetableDelivery") protected List estimatedTimetableDeliveries; @XmlElement(name = "ProductionTimetableDelivery") protected List productionTimetableDeliveries; @XmlAttribute(name = "srsName") protected String srsName; /** * Gets the value of the status property. * * @return * possible object is * {@link Boolean } * */ public Boolean isStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link Boolean } * */ public void setStatus(Boolean value) { this.status = value; } /** * Gets the value of the errorCondition property. * * @return * possible object is * {@link ServiceDeliveryStructure.ErrorCondition } * */ public ServiceDeliveryStructure.ErrorCondition getErrorCondition() { return errorCondition; } /** * Sets the value of the errorCondition property. * * @param value * allowed object is * {@link ServiceDeliveryStructure.ErrorCondition } * */ public void setErrorCondition(ServiceDeliveryStructure.ErrorCondition value) { this.errorCondition = value; } /** * Gets the value of the moreData property. * * @return * possible object is * {@link Boolean } * */ public Boolean isMoreData() { return moreData; } /** * Sets the value of the moreData property. * * @param value * allowed object is * {@link Boolean } * */ public void setMoreData(Boolean value) { this.moreData = value; } /** * Gets the value of the situationExchangeDeliveries 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 situationExchangeDeliveries property. * *

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

     *    getSituationExchangeDeliveries().add(newItem);
     * 
* * *

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

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

     *    getIncludedSituationExchangeDeliveries().add(newItem);
     * 
* * *

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

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

     *    getFacilityMonitoringDeliveries().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link FacilityMonitoringDeliveryStructure } * * */ public List getFacilityMonitoringDeliveries() { if (facilityMonitoringDeliveries == null) { facilityMonitoringDeliveries = new ArrayList(); } return this.facilityMonitoringDeliveries; } /** * Delivery for general Message service.Gets the value of the generalMessageDeliveries 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 generalMessageDeliveries property. * *

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

     *    getGeneralMessageDeliveries().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link GeneralMessageDeliveryStructure } * * */ public List getGeneralMessageDeliveries() { if (generalMessageDeliveries == null) { generalMessageDeliveries = new ArrayList(); } return this.generalMessageDeliveries; } /** * Delivery for Connection Protection Fetcher Service.Gets the value of the connectionMonitoringDistributorDeliveries 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 connectionMonitoringDistributorDeliveries property. * *

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

     *    getConnectionMonitoringDistributorDeliveries().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ConnectionMonitoringDistributorDeliveryStructure } * * */ public List getConnectionMonitoringDistributorDeliveries() { if (connectionMonitoringDistributorDeliveries == null) { connectionMonitoringDistributorDeliveries = new ArrayList(); } return this.connectionMonitoringDistributorDeliveries; } /** * Delivery for Connection Protection Fetcher Service.Gets the value of the connectionMonitoringFeederDeliveries 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 connectionMonitoringFeederDeliveries property. * *

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

     *    getConnectionMonitoringFeederDeliveries().add(newItem);
     * 
* * *

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

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

     *    getConnectionTimetableDeliveries().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ConnectionTimetableDeliveryStructure } * * */ public List getConnectionTimetableDeliveries() { if (connectionTimetableDeliveries == null) { connectionTimetableDeliveries = new ArrayList(); } return this.connectionTimetableDeliveries; } /** * Delviery for Vehicle Activity Service.Gets the value of the vehicleMonitoringDeliveries 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 vehicleMonitoringDeliveries property. * *

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

     *    getVehicleMonitoringDeliveries().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link VehicleMonitoringDeliveryStructure } * * */ public List getVehicleMonitoringDeliveries() { if (vehicleMonitoringDeliveries == null) { vehicleMonitoringDeliveries = new ArrayList(); } return this.vehicleMonitoringDeliveries; } /** * Delviery for Stop Event service.Gets the value of the stopMonitoringDeliveries 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 stopMonitoringDeliveries property. * *

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

     *    getStopMonitoringDeliveries().add(newItem);
     * 
* * *

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

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

     *    getStopTimetableDeliveries().add(newItem);
     * 
* * *

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

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

     *    getEstimatedTimetableDeliveries().add(newItem);
     * 
* * *

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

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

     *    getProductionTimetableDeliveries().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ProductionTimetableDeliveryStructure } * * */ public List getProductionTimetableDeliveries() { if (productionTimetableDeliveries == null) { productionTimetableDeliveries = new ArrayList(); } return this.productionTimetableDeliveries; } /** * Gets the value of the srsName property. * * @return * possible object is * {@link String } * */ public String getSrsName() { return srsName; } /** * Sets the value of the srsName property. * * @param value * allowed object is * {@link String } * */ public void setSrsName(String value) { this.srsName = value; } /** *

Java class for anonymous complex type. * *

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

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <sequence>
     *         <choice>
     *           <element ref="{http://www.siri.org.uk/siri}CapabilityNotSupportedError"/>
     *           <element ref="{http://www.siri.org.uk/siri}OtherError"/>
     *         </choice>
     *         <element name="Description" type="{http://www.siri.org.uk/siri}ErrorDescriptionStructure" minOccurs="0"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "otherError", "capabilityNotSupportedError", "description" }) public static class ErrorCondition implements Serializable { @XmlElement(name = "OtherError") protected OtherErrorStructure otherError; @XmlElement(name = "CapabilityNotSupportedError") protected CapabilityNotSupportedErrorStructure capabilityNotSupportedError; @XmlElement(name = "Description") protected ErrorDescriptionStructure description; /** * Gets the value of the otherError property. * * @return * possible object is * {@link OtherErrorStructure } * */ public OtherErrorStructure getOtherError() { return otherError; } /** * Sets the value of the otherError property. * * @param value * allowed object is * {@link OtherErrorStructure } * */ public void setOtherError(OtherErrorStructure value) { this.otherError = value; } /** * Gets the value of the capabilityNotSupportedError property. * * @return * possible object is * {@link CapabilityNotSupportedErrorStructure } * */ public CapabilityNotSupportedErrorStructure getCapabilityNotSupportedError() { return capabilityNotSupportedError; } /** * Sets the value of the capabilityNotSupportedError property. * * @param value * allowed object is * {@link CapabilityNotSupportedErrorStructure } * */ public void setCapabilityNotSupportedError(CapabilityNotSupportedErrorStructure value) { this.capabilityNotSupportedError = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link ErrorDescriptionStructure } * */ public ErrorDescriptionStructure getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link ErrorDescriptionStructure } * */ public void setDescription(ErrorDescriptionStructure value) { this.description = value; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy