![JAR search and dependency download from the Maven repository](/logo.png)
uk.org.siri.siri21.ConnectionTimetableServiceCapabilities 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 Connection Timetable Capabilities.
*
* Java class for ConnectionTimetableServiceCapabilitiesStructure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ConnectionTimetableServiceCapabilitiesStructure">
* <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}FilterByLineRef"/>
* <element ref="{http://www.siri.org.uk/siri}FilterByConnectionLinkRef"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* <element name="RequestPolicy" minOccurs="0">
* <complexType>
* <complexContent>
* <extension base="{http://www.siri.org.uk/siri}CapabilityRequestPolicyStructure">
* <sequence>
* <element name="ForeignJourneysOnly" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </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 = "ConnectionTimetableServiceCapabilitiesStructure", propOrder = {
"topicFiltering",
"requestPolicy",
"subscriptionPolicy",
"accessControl",
"extensions"
})
@XmlRootElement(name = "ConnectionTimetableServiceCapabilities")
public class ConnectionTimetableServiceCapabilities
extends AbstractCapabilitiesStructure
implements Serializable
{
@XmlElement(name = "TopicFiltering")
protected ConnectionTimetableServiceCapabilities.TopicFiltering topicFiltering;
@XmlElement(name = "RequestPolicy")
protected ConnectionTimetableServiceCapabilities.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 ConnectionTimetableServiceCapabilities.TopicFiltering }
*
*/
public ConnectionTimetableServiceCapabilities.TopicFiltering getTopicFiltering() {
return topicFiltering;
}
/**
* Sets the value of the topicFiltering property.
*
* @param value
* allowed object is
* {@link ConnectionTimetableServiceCapabilities.TopicFiltering }
*
*/
public void setTopicFiltering(ConnectionTimetableServiceCapabilities.TopicFiltering value) {
this.topicFiltering = value;
}
/**
* Gets the value of the requestPolicy property.
*
* @return
* possible object is
* {@link ConnectionTimetableServiceCapabilities.RequestPolicy }
*
*/
public ConnectionTimetableServiceCapabilities.RequestPolicy getRequestPolicy() {
return requestPolicy;
}
/**
* Sets the value of the requestPolicy property.
*
* @param value
* allowed object is
* {@link ConnectionTimetableServiceCapabilities.RequestPolicy }
*
*/
public void setRequestPolicy(ConnectionTimetableServiceCapabilities.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">
* <sequence>
* <element name="ForeignJourneysOnly" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"foreignJourneysOnly"
})
public static class RequestPolicy
extends CapabilityRequestPolicyStructure
implements Serializable
{
@XmlElement(name = "ForeignJourneysOnly", defaultValue = "false")
protected Boolean foreignJourneysOnly;
/**
* Gets the value of the foreignJourneysOnly property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isForeignJourneysOnly() {
return foreignJourneysOnly;
}
/**
* Sets the value of the foreignJourneysOnly property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setForeignJourneysOnly(Boolean value) {
this.foreignJourneysOnly = 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}FilterByLineRef"/>
* <element ref="{http://www.siri.org.uk/siri}FilterByConnectionLinkRef"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"filterByLineRef",
"filterByConnectionLinkRef"
})
public static class TopicFiltering
implements Serializable
{
@XmlElement(name = "FilterByLineRef", defaultValue = "true")
protected boolean filterByLineRef;
@XmlElement(name = "FilterByConnectionLinkRef", defaultValue = "true")
protected boolean filterByConnectionLinkRef;
/**
* 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;
}
/**
* Whether results can be filtered by Connection link. Default is ' true'.
*
*/
public boolean isFilterByConnectionLinkRef() {
return filterByConnectionLinkRef;
}
/**
* Sets the value of the filterByConnectionLinkRef property.
*
*/
public void setFilterByConnectionLinkRef(boolean value) {
this.filterByConnectionLinkRef = value;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy