![JAR search and dependency download from the Maven repository](/logo.png)
uk.org.siri.siri21.StopTimetableServiceCapabilities 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 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 Capabilities of Stop Timetable Service.
*
* Java class for StopTimetableServiceCapabilitiesStructure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="StopTimetableServiceCapabilitiesStructure">
* <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}FilterByMonitoringRef"/>
* <element ref="{http://www.siri.org.uk/siri}FilterByLineRef"/>
* <element ref="{http://www.siri.org.uk/siri}FilterByDirectionRef" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* <element name="RequestPolicy" type="{http://www.siri.org.uk/siri}StopTimetableCapabilityRequestPolicyStructure" 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"/>
* <element ref="{http://www.siri.org.uk/siri}CheckMonitoringRef" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
* </element>
* <element ref="{http://www.siri.org.uk/siri}Extensions" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "StopTimetableServiceCapabilitiesStructure", propOrder = {
"topicFiltering",
"requestPolicy",
"accessControl",
"extensions"
})
@XmlRootElement(name = "StopTimetableServiceCapabilities")
public class StopTimetableServiceCapabilities
extends AbstractCapabilitiesStructure
implements Serializable
{
@XmlElement(name = "TopicFiltering")
protected StopTimetableServiceCapabilities.TopicFiltering topicFiltering;
@XmlElement(name = "RequestPolicy")
protected StopTimetableCapabilityRequestPolicyStructure requestPolicy;
@XmlElement(name = "AccessControl")
protected StopTimetableServiceCapabilities.AccessControl accessControl;
@XmlElement(name = "Extensions")
protected Extensions extensions;
/**
* Gets the value of the topicFiltering property.
*
* @return
* possible object is
* {@link StopTimetableServiceCapabilities.TopicFiltering }
*
*/
public StopTimetableServiceCapabilities.TopicFiltering getTopicFiltering() {
return topicFiltering;
}
/**
* Sets the value of the topicFiltering property.
*
* @param value
* allowed object is
* {@link StopTimetableServiceCapabilities.TopicFiltering }
*
*/
public void setTopicFiltering(StopTimetableServiceCapabilities.TopicFiltering value) {
this.topicFiltering = value;
}
/**
* Gets the value of the requestPolicy property.
*
* @return
* possible object is
* {@link StopTimetableCapabilityRequestPolicyStructure }
*
*/
public StopTimetableCapabilityRequestPolicyStructure getRequestPolicy() {
return requestPolicy;
}
/**
* Sets the value of the requestPolicy property.
*
* @param value
* allowed object is
* {@link StopTimetableCapabilityRequestPolicyStructure }
*
*/
public void setRequestPolicy(StopTimetableCapabilityRequestPolicyStructure value) {
this.requestPolicy = value;
}
/**
* Gets the value of the accessControl property.
*
* @return
* possible object is
* {@link StopTimetableServiceCapabilities.AccessControl }
*
*/
public StopTimetableServiceCapabilities.AccessControl getAccessControl() {
return accessControl;
}
/**
* Sets the value of the accessControl property.
*
* @param value
* allowed object is
* {@link StopTimetableServiceCapabilities.AccessControl }
*
*/
public void setAccessControl(StopTimetableServiceCapabilities.AccessControl 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}CapabilityAccessControlStructure">
* <sequence>
* <element ref="{http://www.siri.org.uk/siri}CheckOperatorRef" minOccurs="0"/>
* <element ref="{http://www.siri.org.uk/siri}CheckLineRef" minOccurs="0"/>
* <element ref="{http://www.siri.org.uk/siri}CheckMonitoringRef" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"checkOperatorRef",
"checkLineRef",
"checkMonitoringRef"
})
public static class AccessControl
extends CapabilityAccessControlStructure
implements Serializable
{
@XmlElement(name = "CheckOperatorRef", defaultValue = "true")
protected Boolean checkOperatorRef;
@XmlElement(name = "CheckLineRef", defaultValue = "true")
protected Boolean checkLineRef;
@XmlElement(name = "CheckMonitoringRef", defaultValue = "true")
protected Boolean checkMonitoringRef;
/**
* 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;
}
/**
* Gets the value of the checkMonitoringRef property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isCheckMonitoringRef() {
return checkMonitoringRef;
}
/**
* Sets the value of the checkMonitoringRef property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setCheckMonitoringRef(Boolean value) {
this.checkMonitoringRef = 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}FilterByMonitoringRef"/>
* <element ref="{http://www.siri.org.uk/siri}FilterByLineRef"/>
* <element ref="{http://www.siri.org.uk/siri}FilterByDirectionRef" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"filterByMonitoringRef",
"filterByLineRef",
"filterByDirectionRef"
})
public static class TopicFiltering
implements Serializable
{
@XmlElement(name = "FilterByMonitoringRef")
protected boolean filterByMonitoringRef;
@XmlElement(name = "FilterByLineRef", defaultValue = "true")
protected boolean filterByLineRef;
@XmlElement(name = "FilterByDirectionRef", defaultValue = "true")
protected Boolean filterByDirectionRef;
/**
* Gets the value of the filterByMonitoringRef property.
*
*/
public boolean isFilterByMonitoringRef() {
return filterByMonitoringRef;
}
/**
* Sets the value of the filterByMonitoringRef property.
*
*/
public void setFilterByMonitoringRef(boolean value) {
this.filterByMonitoringRef = 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 filterByDirectionRef property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isFilterByDirectionRef() {
return filterByDirectionRef;
}
/**
* Sets the value of the filterByDirectionRef property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setFilterByDirectionRef(Boolean value) {
this.filterByDirectionRef = value;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy