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

uk.org.siri.siri21.ProductionTimetableServiceCapabilities 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:41 PM UTC 
//


package uk.org.siri.siri21;

import java.io.Serializable;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;


/**
 * Type for ProductionTimetable Capabilities.
 * 
 * 

Java class for ProductionTimetableServiceCapabilitiesStructure complex type. * *

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

 * <complexType name="ProductionTimetableServiceCapabilitiesStructure">
 *   <complexContent>
 *     <extension base="{http://www.siri.org.uk/siri}AbstractCapabilitiesStructure">
 *       <sequence>
 *         <element name="TopicFiltering" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element ref="{http://www.siri.org.uk/siri}FilterByValidityPeriod"/>
 *                   <element ref="{http://www.siri.org.uk/siri}FilterByOperatorRef"/>
 *                   <element ref="{http://www.siri.org.uk/siri}FilterByLineRef"/>
 *                   <element ref="{http://www.siri.org.uk/siri}FilterByVehicleMode" minOccurs="0"/>
 *                   <element ref="{http://www.siri.org.uk/siri}FilterByProductCategoryRef" minOccurs="0"/>
 *                   <element ref="{http://www.siri.org.uk/siri}FilterByStopPointRef" minOccurs="0"/>
 *                   <element name="FilterByVersionRef" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="RequestPolicy" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <extension base="{http://www.siri.org.uk/siri}CapabilityRequestPolicyStructure">
 *               </extension>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="SubscriptionPolicy" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="HasIncrementalUpdates" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="AccessControl" type="{http://www.siri.org.uk/siri}ConnectionCapabilityAccessControlStructure" minOccurs="0"/>
 *         <element ref="{http://www.siri.org.uk/siri}Extensions" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ProductionTimetableServiceCapabilitiesStructure", propOrder = { "topicFiltering", "requestPolicy", "subscriptionPolicy", "accessControl", "extensions" }) @XmlRootElement(name = "ProductionTimetableServiceCapabilities") public class ProductionTimetableServiceCapabilities extends AbstractCapabilitiesStructure implements Serializable { @XmlElement(name = "TopicFiltering") protected ProductionTimetableServiceCapabilities.TopicFiltering topicFiltering; @XmlElement(name = "RequestPolicy") protected ProductionTimetableServiceCapabilities.RequestPolicy requestPolicy; @XmlElement(name = "SubscriptionPolicy") protected ProductionTimetableServiceCapabilities.SubscriptionPolicy subscriptionPolicy; @XmlElement(name = "AccessControl") protected ConnectionCapabilityAccessControlStructure accessControl; @XmlElement(name = "Extensions") protected Extensions extensions; /** * Gets the value of the topicFiltering property. * * @return * possible object is * {@link ProductionTimetableServiceCapabilities.TopicFiltering } * */ public ProductionTimetableServiceCapabilities.TopicFiltering getTopicFiltering() { return topicFiltering; } /** * Sets the value of the topicFiltering property. * * @param value * allowed object is * {@link ProductionTimetableServiceCapabilities.TopicFiltering } * */ public void setTopicFiltering(ProductionTimetableServiceCapabilities.TopicFiltering value) { this.topicFiltering = value; } /** * Gets the value of the requestPolicy property. * * @return * possible object is * {@link ProductionTimetableServiceCapabilities.RequestPolicy } * */ public ProductionTimetableServiceCapabilities.RequestPolicy getRequestPolicy() { return requestPolicy; } /** * Sets the value of the requestPolicy property. * * @param value * allowed object is * {@link ProductionTimetableServiceCapabilities.RequestPolicy } * */ public void setRequestPolicy(ProductionTimetableServiceCapabilities.RequestPolicy value) { this.requestPolicy = value; } /** * Gets the value of the subscriptionPolicy property. * * @return * possible object is * {@link ProductionTimetableServiceCapabilities.SubscriptionPolicy } * */ public ProductionTimetableServiceCapabilities.SubscriptionPolicy getSubscriptionPolicy() { return subscriptionPolicy; } /** * Sets the value of the subscriptionPolicy property. * * @param value * allowed object is * {@link ProductionTimetableServiceCapabilities.SubscriptionPolicy } * */ public void setSubscriptionPolicy(ProductionTimetableServiceCapabilities.SubscriptionPolicy value) { this.subscriptionPolicy = value; } /** * Gets the value of the accessControl property. * * @return * possible object is * {@link ConnectionCapabilityAccessControlStructure } * */ public ConnectionCapabilityAccessControlStructure getAccessControl() { return accessControl; } /** * Sets the value of the accessControl property. * * @param value * allowed object is * {@link ConnectionCapabilityAccessControlStructure } * */ public void setAccessControl(ConnectionCapabilityAccessControlStructure value) { this.accessControl = value; } /** * 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; } /** *

Java class for anonymous complex type. * *

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

     * <complexType>
     *   <complexContent>
     *     <extension base="{http://www.siri.org.uk/siri}CapabilityRequestPolicyStructure">
     *     </extension>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class RequestPolicy extends CapabilityRequestPolicyStructure implements Serializable { } /** *

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>
     *         <element name="HasIncrementalUpdates" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "hasIncrementalUpdates" }) public static class SubscriptionPolicy implements Serializable { @XmlElement(name = "HasIncrementalUpdates", defaultValue = "true") protected boolean hasIncrementalUpdates; /** * Gets the value of the hasIncrementalUpdates property. * */ public boolean isHasIncrementalUpdates() { return hasIncrementalUpdates; } /** * Sets the value of the hasIncrementalUpdates property. * */ public void setHasIncrementalUpdates(boolean value) { this.hasIncrementalUpdates = 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>
     *         <element ref="{http://www.siri.org.uk/siri}FilterByValidityPeriod"/>
     *         <element ref="{http://www.siri.org.uk/siri}FilterByOperatorRef"/>
     *         <element ref="{http://www.siri.org.uk/siri}FilterByLineRef"/>
     *         <element ref="{http://www.siri.org.uk/siri}FilterByVehicleMode" minOccurs="0"/>
     *         <element ref="{http://www.siri.org.uk/siri}FilterByProductCategoryRef" minOccurs="0"/>
     *         <element ref="{http://www.siri.org.uk/siri}FilterByStopPointRef" minOccurs="0"/>
     *         <element name="FilterByVersionRef" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "filterByValidityPeriod", "filterByOperatorRef", "filterByLineRef", "filterByVehicleMode", "filterByProductCategoryRef", "filterByStopPointRef", "filterByVersionRef" }) public static class TopicFiltering implements Serializable { @XmlElement(name = "FilterByValidityPeriod", defaultValue = "true") protected boolean filterByValidityPeriod; @XmlElement(name = "FilterByOperatorRef", defaultValue = "true") protected boolean filterByOperatorRef; @XmlElement(name = "FilterByLineRef", defaultValue = "true") protected boolean filterByLineRef; @XmlElement(name = "FilterByVehicleMode", defaultValue = "true") protected Boolean filterByVehicleMode; @XmlElement(name = "FilterByProductCategoryRef", defaultValue = "true") protected Boolean filterByProductCategoryRef; @XmlElement(name = "FilterByStopPointRef", defaultValue = "true") protected Boolean filterByStopPointRef; @XmlElement(name = "FilterByVersionRef", defaultValue = "true") protected boolean filterByVersionRef; /** * Gets the value of the filterByValidityPeriod property. * */ public boolean isFilterByValidityPeriod() { return filterByValidityPeriod; } /** * Sets the value of the filterByValidityPeriod property. * */ public void setFilterByValidityPeriod(boolean value) { this.filterByValidityPeriod = value; } /** * Gets the value of the filterByOperatorRef property. * */ public boolean isFilterByOperatorRef() { return filterByOperatorRef; } /** * Sets the value of the filterByOperatorRef property. * */ public void setFilterByOperatorRef(boolean value) { this.filterByOperatorRef = value; } /** * Gets the value of the filterByLineRef property. * */ public boolean isFilterByLineRef() { return filterByLineRef; } /** * Sets the value of the filterByLineRef property. * */ public void setFilterByLineRef(boolean value) { this.filterByLineRef = value; } /** * Gets the value of the filterByVehicleMode property. * * @return * possible object is * {@link Boolean } * */ public Boolean isFilterByVehicleMode() { return filterByVehicleMode; } /** * Sets the value of the filterByVehicleMode property. * * @param value * allowed object is * {@link Boolean } * */ public void setFilterByVehicleMode(Boolean value) { this.filterByVehicleMode = value; } /** * Gets the value of the filterByProductCategoryRef property. * * @return * possible object is * {@link Boolean } * */ public Boolean isFilterByProductCategoryRef() { return filterByProductCategoryRef; } /** * Sets the value of the filterByProductCategoryRef property. * * @param value * allowed object is * {@link Boolean } * */ public void setFilterByProductCategoryRef(Boolean value) { this.filterByProductCategoryRef = value; } /** * Gets the value of the filterByStopPointRef property. * * @return * possible object is * {@link Boolean } * */ public Boolean isFilterByStopPointRef() { return filterByStopPointRef; } /** * Sets the value of the filterByStopPointRef property. * * @param value * allowed object is * {@link Boolean } * */ public void setFilterByStopPointRef(Boolean value) { this.filterByStopPointRef = value; } /** * Gets the value of the filterByVersionRef property. * */ public boolean isFilterByVersionRef() { return filterByVersionRef; } /** * Sets the value of the filterByVersionRef property. * */ public void setFilterByVersionRef(boolean value) { this.filterByVersionRef = value; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy