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

uk.org.siri.siri21.FacilityMonitoringServiceCapabilities 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 java.time.Duration;
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.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.entur.siri.adapter.DurationXmlAdapter;


/**
 * Type for Vehicle Monitoring Capabilities.
 * 
 * 

Java class for FacilityMonitoringServiceCapabilitiesStructure complex type. * *

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

 * <complexType name="FacilityMonitoringServiceCapabilitiesStructure">
 *   <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 name="DefaultPreviewInterval" type="{http://www.siri.org.uk/siri}PositiveDurationType"/>
 *                   <element ref="{http://www.siri.org.uk/siri}FilterByFacilityRef"/>
 *                   <element name="FilterByLocationRef" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *                   <element ref="{http://www.siri.org.uk/siri}FilterByVehicleRef" minOccurs="0"/>
 *                   <element ref="{http://www.siri.org.uk/siri}FilterByLineRef" minOccurs="0"/>
 *                   <element ref="{http://www.siri.org.uk/siri}FilterByStopPointRef" minOccurs="0"/>
 *                   <element ref="{http://www.siri.org.uk/siri}FilterByVehicleJourneyRef" minOccurs="0"/>
 *                   <element ref="{http://www.siri.org.uk/siri}FilterByConnectionLinkRef" minOccurs="0"/>
 *                   <element ref="{http://www.siri.org.uk/siri}FilterByInterchangeRef" minOccurs="0"/>
 *                   <element name="FilterBySpecificNeed" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="RequestPolicy" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <extension base="{http://www.siri.org.uk/siri}CapabilityRequestPolicyStructure">
 *                 <sequence>
 *                   <group ref="{http://www.siri.org.uk/siri}FacilityMonitoringVolumeGroup"/>
 *                 </sequence>
 *               </extension>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="SubscriptionPolicy" type="{http://www.siri.org.uk/siri}CapabilitySubscriptionPolicyStructure" minOccurs="0"/>
 *         <element name="AccessControl" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <extension base="{http://www.siri.org.uk/siri}CapabilityAccessControlStructure">
 *                 <sequence>
 *                   <element ref="{http://www.siri.org.uk/siri}CheckOperatorRef" minOccurs="0"/>
 *                   <element ref="{http://www.siri.org.uk/siri}CheckLineRef" minOccurs="0"/>
 *                 </sequence>
 *               </extension>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="ResponseFeatures" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="HasRemedy" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *                   <element name="HasFacilityLocation" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element ref="{http://www.siri.org.uk/siri}Extensions" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FacilityMonitoringServiceCapabilitiesStructure", propOrder = { "topicFiltering", "requestPolicy", "subscriptionPolicy", "accessControl", "responseFeatures", "extensions" }) @XmlRootElement(name = "FacilityMonitoringServiceCapabilities") public class FacilityMonitoringServiceCapabilities extends AbstractCapabilitiesStructure implements Serializable { @XmlElement(name = "TopicFiltering") protected FacilityMonitoringServiceCapabilities.TopicFiltering topicFiltering; @XmlElement(name = "RequestPolicy") protected FacilityMonitoringServiceCapabilities.RequestPolicy requestPolicy; @XmlElement(name = "SubscriptionPolicy") protected CapabilitySubscriptionPolicyStructure subscriptionPolicy; @XmlElement(name = "AccessControl") protected FacilityMonitoringServiceCapabilities.AccessControl accessControl; @XmlElement(name = "ResponseFeatures") protected FacilityMonitoringServiceCapabilities.ResponseFeatures responseFeatures; @XmlElement(name = "Extensions") protected Extensions extensions; /** * Gets the value of the topicFiltering property. * * @return * possible object is * {@link FacilityMonitoringServiceCapabilities.TopicFiltering } * */ public FacilityMonitoringServiceCapabilities.TopicFiltering getTopicFiltering() { return topicFiltering; } /** * Sets the value of the topicFiltering property. * * @param value * allowed object is * {@link FacilityMonitoringServiceCapabilities.TopicFiltering } * */ public void setTopicFiltering(FacilityMonitoringServiceCapabilities.TopicFiltering value) { this.topicFiltering = value; } /** * Gets the value of the requestPolicy property. * * @return * possible object is * {@link FacilityMonitoringServiceCapabilities.RequestPolicy } * */ public FacilityMonitoringServiceCapabilities.RequestPolicy getRequestPolicy() { return requestPolicy; } /** * Sets the value of the requestPolicy property. * * @param value * allowed object is * {@link FacilityMonitoringServiceCapabilities.RequestPolicy } * */ public void setRequestPolicy(FacilityMonitoringServiceCapabilities.RequestPolicy value) { this.requestPolicy = value; } /** * Gets the value of the subscriptionPolicy property. * * @return * possible object is * {@link CapabilitySubscriptionPolicyStructure } * */ public CapabilitySubscriptionPolicyStructure getSubscriptionPolicy() { return subscriptionPolicy; } /** * Sets the value of the subscriptionPolicy property. * * @param value * allowed object is * {@link CapabilitySubscriptionPolicyStructure } * */ public void setSubscriptionPolicy(CapabilitySubscriptionPolicyStructure value) { this.subscriptionPolicy = value; } /** * Gets the value of the accessControl property. * * @return * possible object is * {@link FacilityMonitoringServiceCapabilities.AccessControl } * */ public FacilityMonitoringServiceCapabilities.AccessControl getAccessControl() { return accessControl; } /** * Sets the value of the accessControl property. * * @param value * allowed object is * {@link FacilityMonitoringServiceCapabilities.AccessControl } * */ public void setAccessControl(FacilityMonitoringServiceCapabilities.AccessControl value) { this.accessControl = value; } /** * Gets the value of the responseFeatures property. * * @return * possible object is * {@link FacilityMonitoringServiceCapabilities.ResponseFeatures } * */ public FacilityMonitoringServiceCapabilities.ResponseFeatures getResponseFeatures() { return responseFeatures; } /** * Sets the value of the responseFeatures property. * * @param value * allowed object is * {@link FacilityMonitoringServiceCapabilities.ResponseFeatures } * */ public void setResponseFeatures(FacilityMonitoringServiceCapabilities.ResponseFeatures value) { this.responseFeatures = 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}CapabilityAccessControlStructure">
     *       <sequence>
     *         <element ref="{http://www.siri.org.uk/siri}CheckOperatorRef" minOccurs="0"/>
     *         <element ref="{http://www.siri.org.uk/siri}CheckLineRef" minOccurs="0"/>
     *       </sequence>
     *     </extension>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "checkOperatorRef", "checkLineRef" }) public static class AccessControl extends CapabilityAccessControlStructure implements Serializable { @XmlElement(name = "CheckOperatorRef", defaultValue = "true") protected Boolean checkOperatorRef; @XmlElement(name = "CheckLineRef", defaultValue = "true") protected Boolean checkLineRef; /** * Gets the value of the checkOperatorRef property. * * @return * possible object is * {@link Boolean } * */ public Boolean isCheckOperatorRef() { return checkOperatorRef; } /** * Sets the value of the checkOperatorRef property. * * @param value * allowed object is * {@link Boolean } * */ public void setCheckOperatorRef(Boolean value) { this.checkOperatorRef = value; } /** * Gets the value of the checkLineRef property. * * @return * possible object is * {@link Boolean } * */ public Boolean isCheckLineRef() { return checkLineRef; } /** * Sets the value of the checkLineRef property. * * @param value * allowed object is * {@link Boolean } * */ public void setCheckLineRef(Boolean value) { this.checkLineRef = 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">
     *       <sequence>
     *         <group ref="{http://www.siri.org.uk/siri}FacilityMonitoringVolumeGroup"/>
     *       </sequence>
     *     </extension>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "hasMaximumFacilityStatus" }) public static class RequestPolicy extends CapabilityRequestPolicyStructure implements Serializable { @XmlElement(name = "HasMaximumFacilityStatus", defaultValue = "false") protected Boolean hasMaximumFacilityStatus; /** * Gets the value of the hasMaximumFacilityStatus property. * * @return * possible object is * {@link Boolean } * */ public Boolean isHasMaximumFacilityStatus() { return hasMaximumFacilityStatus; } /** * Sets the value of the hasMaximumFacilityStatus property. * * @param value * allowed object is * {@link Boolean } * */ public void setHasMaximumFacilityStatus(Boolean value) { this.hasMaximumFacilityStatus = 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 name="HasRemedy" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
     *         <element name="HasFacilityLocation" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "hasRemedy", "hasFacilityLocation" }) public static class ResponseFeatures implements Serializable { @XmlElement(name = "HasRemedy", defaultValue = "false") protected Boolean hasRemedy; @XmlElement(name = "HasFacilityLocation", defaultValue = "true") protected Boolean hasFacilityLocation; /** * Gets the value of the hasRemedy property. * * @return * possible object is * {@link Boolean } * */ public Boolean isHasRemedy() { return hasRemedy; } /** * Sets the value of the hasRemedy property. * * @param value * allowed object is * {@link Boolean } * */ public void setHasRemedy(Boolean value) { this.hasRemedy = value; } /** * Gets the value of the hasFacilityLocation property. * * @return * possible object is * {@link Boolean } * */ public Boolean isHasFacilityLocation() { return hasFacilityLocation; } /** * Sets the value of the hasFacilityLocation property. * * @param value * allowed object is * {@link Boolean } * */ public void setHasFacilityLocation(Boolean value) { this.hasFacilityLocation = 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 name="DefaultPreviewInterval" type="{http://www.siri.org.uk/siri}PositiveDurationType"/>
     *         <element ref="{http://www.siri.org.uk/siri}FilterByFacilityRef"/>
     *         <element name="FilterByLocationRef" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
     *         <element ref="{http://www.siri.org.uk/siri}FilterByVehicleRef" minOccurs="0"/>
     *         <element ref="{http://www.siri.org.uk/siri}FilterByLineRef" minOccurs="0"/>
     *         <element ref="{http://www.siri.org.uk/siri}FilterByStopPointRef" minOccurs="0"/>
     *         <element ref="{http://www.siri.org.uk/siri}FilterByVehicleJourneyRef" minOccurs="0"/>
     *         <element ref="{http://www.siri.org.uk/siri}FilterByConnectionLinkRef" minOccurs="0"/>
     *         <element ref="{http://www.siri.org.uk/siri}FilterByInterchangeRef" minOccurs="0"/>
     *         <element name="FilterBySpecificNeed" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "defaultPreviewInterval", "filterByFacilityRef", "filterByLocationRef", "filterByVehicleRef", "filterByLineRef", "filterByStopPointRef", "filterByVehicleJourneyRef", "filterByConnectionLinkRef", "filterByInterchangeRef", "filterBySpecificNeed" }) public static class TopicFiltering implements Serializable { @XmlElement(name = "DefaultPreviewInterval", required = true, type = String.class, defaultValue = "PT60M") @XmlJavaTypeAdapter(DurationXmlAdapter.class) @XmlSchemaType(name = "duration") protected Duration defaultPreviewInterval; @XmlElement(name = "FilterByFacilityRef", defaultValue = "true") protected boolean filterByFacilityRef; @XmlElement(name = "FilterByLocationRef") protected boolean filterByLocationRef; @XmlElement(name = "FilterByVehicleRef", defaultValue = "false") protected Boolean filterByVehicleRef; @XmlElement(name = "FilterByLineRef", defaultValue = "true") protected Boolean filterByLineRef; @XmlElement(name = "FilterByStopPointRef", defaultValue = "true") protected Boolean filterByStopPointRef; @XmlElement(name = "FilterByVehicleJourneyRef", defaultValue = "false") protected Boolean filterByVehicleJourneyRef; @XmlElement(name = "FilterByConnectionLinkRef", defaultValue = "true") protected Boolean filterByConnectionLinkRef; @XmlElement(name = "FilterByInterchangeRef", defaultValue = "false") protected Boolean filterByInterchangeRef; @XmlElement(name = "FilterBySpecificNeed", defaultValue = "true") protected Boolean filterBySpecificNeed; /** * Gets the value of the defaultPreviewInterval property. * * @return * possible object is * {@link String } * */ public Duration getDefaultPreviewInterval() { return defaultPreviewInterval; } /** * Sets the value of the defaultPreviewInterval property. * * @param value * allowed object is * {@link String } * */ public void setDefaultPreviewInterval(Duration value) { this.defaultPreviewInterval = value; } /** * Gets the value of the filterByFacilityRef property. * */ public boolean isFilterByFacilityRef() { return filterByFacilityRef; } /** * Sets the value of the filterByFacilityRef property. * */ public void setFilterByFacilityRef(boolean value) { this.filterByFacilityRef = value; } /** * Gets the value of the filterByLocationRef property. * */ public boolean isFilterByLocationRef() { return filterByLocationRef; } /** * Sets the value of the filterByLocationRef property. * */ public void setFilterByLocationRef(boolean value) { this.filterByLocationRef = value; } /** * Gets the value of the filterByVehicleRef property. * * @return * possible object is * {@link Boolean } * */ public Boolean isFilterByVehicleRef() { return filterByVehicleRef; } /** * Sets the value of the filterByVehicleRef property. * * @param value * allowed object is * {@link Boolean } * */ public void setFilterByVehicleRef(Boolean value) { this.filterByVehicleRef = value; } /** * Gets the value of the filterByLineRef property. * * @return * possible object is * {@link Boolean } * */ public Boolean isFilterByLineRef() { return filterByLineRef; } /** * Sets the value of the filterByLineRef property. * * @param value * allowed object is * {@link Boolean } * */ public void setFilterByLineRef(Boolean value) { this.filterByLineRef = 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 filterByVehicleJourneyRef property. * * @return * possible object is * {@link Boolean } * */ public Boolean isFilterByVehicleJourneyRef() { return filterByVehicleJourneyRef; } /** * Sets the value of the filterByVehicleJourneyRef property. * * @param value * allowed object is * {@link Boolean } * */ public void setFilterByVehicleJourneyRef(Boolean value) { this.filterByVehicleJourneyRef = value; } /** * Gets the value of the filterByConnectionLinkRef property. * * @return * possible object is * {@link Boolean } * */ public Boolean isFilterByConnectionLinkRef() { return filterByConnectionLinkRef; } /** * Sets the value of the filterByConnectionLinkRef property. * * @param value * allowed object is * {@link Boolean } * */ public void setFilterByConnectionLinkRef(Boolean value) { this.filterByConnectionLinkRef = value; } /** * Gets the value of the filterByInterchangeRef property. * * @return * possible object is * {@link Boolean } * */ public Boolean isFilterByInterchangeRef() { return filterByInterchangeRef; } /** * Sets the value of the filterByInterchangeRef property. * * @param value * allowed object is * {@link Boolean } * */ public void setFilterByInterchangeRef(Boolean value) { this.filterByInterchangeRef = value; } /** * Gets the value of the filterBySpecificNeed property. * * @return * possible object is * {@link Boolean } * */ public Boolean isFilterBySpecificNeed() { return filterBySpecificNeed; } /** * Sets the value of the filterBySpecificNeed property. * * @param value * allowed object is * {@link Boolean } * */ public void setFilterBySpecificNeed(Boolean value) { this.filterBySpecificNeed = value; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy