![JAR search and dependency download from the Maven repository](/logo.png)
uk.org.siri.siri21.EstimatedTimetableServiceCapabilities Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of siri-java-model Show documentation
Show all versions of siri-java-model Show documentation
Java objects based on the public SIRI XSDs
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 Estimated Timetable Capabilities.
*
* Java class for EstimatedTimetableServiceCapabilitiesStructure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="EstimatedTimetableServiceCapabilitiesStructure">
* <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" minOccurs="0"/>
* <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" minOccurs="0"/>
* </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" type="{http://www.siri.org.uk/siri}CapabilitySubscriptionPolicyStructure" minOccurs="0"/>
* <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 = "EstimatedTimetableServiceCapabilitiesStructure", propOrder = {
"topicFiltering",
"requestPolicy",
"subscriptionPolicy",
"accessControl",
"extensions"
})
@XmlRootElement(name = "EstimatedTimetableServiceCapabilities")
public class EstimatedTimetableServiceCapabilities
extends AbstractCapabilitiesStructure
implements Serializable
{
@XmlElement(name = "TopicFiltering")
protected EstimatedTimetableServiceCapabilities.TopicFiltering topicFiltering;
@XmlElement(name = "RequestPolicy")
protected EstimatedTimetableServiceCapabilities.RequestPolicy requestPolicy;
@XmlElement(name = "SubscriptionPolicy")
protected CapabilitySubscriptionPolicyStructure 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 EstimatedTimetableServiceCapabilities.TopicFiltering }
*
*/
public EstimatedTimetableServiceCapabilities.TopicFiltering getTopicFiltering() {
return topicFiltering;
}
/**
* Sets the value of the topicFiltering property.
*
* @param value
* allowed object is
* {@link EstimatedTimetableServiceCapabilities.TopicFiltering }
*
*/
public void setTopicFiltering(EstimatedTimetableServiceCapabilities.TopicFiltering value) {
this.topicFiltering = value;
}
/**
* Gets the value of the requestPolicy property.
*
* @return
* possible object is
* {@link EstimatedTimetableServiceCapabilities.RequestPolicy }
*
*/
public EstimatedTimetableServiceCapabilities.RequestPolicy getRequestPolicy() {
return requestPolicy;
}
/**
* Sets the value of the requestPolicy property.
*
* @param value
* allowed object is
* {@link EstimatedTimetableServiceCapabilities.RequestPolicy }
*
*/
public void setRequestPolicy(EstimatedTimetableServiceCapabilities.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 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="DefaultPreviewInterval" type="{http://www.siri.org.uk/siri}PositiveDurationType" minOccurs="0"/>
* <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" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"defaultPreviewInterval",
"filterByOperatorRef",
"filterByLineRef",
"filterByVehicleMode",
"filterByProductCategoryRef",
"filterByStopPointRef",
"filterByVersionRef"
})
public static class TopicFiltering
implements Serializable
{
@XmlElement(name = "DefaultPreviewInterval", type = String.class)
@XmlJavaTypeAdapter(DurationXmlAdapter.class)
@XmlSchemaType(name = "duration")
protected Duration defaultPreviewInterval;
@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 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 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.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isFilterByVersionRef() {
return filterByVersionRef;
}
/**
* Sets the value of the filterByVersionRef property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setFilterByVersionRef(Boolean value) {
this.filterByVersionRef = value;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy