![JAR search and dependency download from the Maven repository](/logo.png)
uk.org.siri.siri20.SituationExchangeServiceCapabilities Maven / Gradle / Ivy
Show all versions of siri-java-model Show documentation
//
// 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:39 PM UTC
//
package uk.org.siri.siri20;
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 SItuation Exchange Service Capabilities.
*
* Java class for SituationExchangeServiceCapabilitiesStructure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="SituationExchangeServiceCapabilitiesStructure">
* <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" minOccurs="0"/>
* <element name="FilterByLocationRef" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element ref="{http://www.siri.org.uk/siri}FilterByVehicleRef" minOccurs="0"/>
* <element name="FilterByMode" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="FilterByNetworkRef" type="{http://www.w3.org/2001/XMLSchema}boolean" 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 name="FilterByStopPlaceRef" type="{http://www.w3.org/2001/XMLSchema}boolean" 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"/>
* <element name="FilterByKeyword" 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}SituationExchangeVolumeGroup"/>
* </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>
* </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 = "SituationExchangeServiceCapabilitiesStructure", propOrder = {
"topicFiltering",
"requestPolicy",
"subscriptionPolicy",
"accessControl",
"responseFeatures",
"extensions"
})
@XmlRootElement(name = "SituationExchangeServiceCapabilities")
public class SituationExchangeServiceCapabilities
extends AbstractCapabilitiesStructure
implements Serializable
{
@XmlElement(name = "TopicFiltering")
protected SituationExchangeServiceCapabilities.TopicFiltering topicFiltering;
@XmlElement(name = "RequestPolicy")
protected SituationExchangeServiceCapabilities.RequestPolicy requestPolicy;
@XmlElement(name = "SubscriptionPolicy")
protected CapabilitySubscriptionPolicyStructure subscriptionPolicy;
@XmlElement(name = "AccessControl")
protected SituationExchangeServiceCapabilities.AccessControl accessControl;
@XmlElement(name = "ResponseFeatures")
protected SituationExchangeServiceCapabilities.ResponseFeatures responseFeatures;
@XmlElement(name = "Extensions")
protected Extensions extensions;
/**
* Gets the value of the topicFiltering property.
*
* @return
* possible object is
* {@link SituationExchangeServiceCapabilities.TopicFiltering }
*
*/
public SituationExchangeServiceCapabilities.TopicFiltering getTopicFiltering() {
return topicFiltering;
}
/**
* Sets the value of the topicFiltering property.
*
* @param value
* allowed object is
* {@link SituationExchangeServiceCapabilities.TopicFiltering }
*
*/
public void setTopicFiltering(SituationExchangeServiceCapabilities.TopicFiltering value) {
this.topicFiltering = value;
}
/**
* Gets the value of the requestPolicy property.
*
* @return
* possible object is
* {@link SituationExchangeServiceCapabilities.RequestPolicy }
*
*/
public SituationExchangeServiceCapabilities.RequestPolicy getRequestPolicy() {
return requestPolicy;
}
/**
* Sets the value of the requestPolicy property.
*
* @param value
* allowed object is
* {@link SituationExchangeServiceCapabilities.RequestPolicy }
*
*/
public void setRequestPolicy(SituationExchangeServiceCapabilities.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 SituationExchangeServiceCapabilities.AccessControl }
*
*/
public SituationExchangeServiceCapabilities.AccessControl getAccessControl() {
return accessControl;
}
/**
* Sets the value of the accessControl property.
*
* @param value
* allowed object is
* {@link SituationExchangeServiceCapabilities.AccessControl }
*
*/
public void setAccessControl(SituationExchangeServiceCapabilities.AccessControl value) {
this.accessControl = value;
}
/**
* Gets the value of the responseFeatures property.
*
* @return
* possible object is
* {@link SituationExchangeServiceCapabilities.ResponseFeatures }
*
*/
public SituationExchangeServiceCapabilities.ResponseFeatures getResponseFeatures() {
return responseFeatures;
}
/**
* Sets the value of the responseFeatures property.
*
* @param value
* allowed object is
* {@link SituationExchangeServiceCapabilities.ResponseFeatures }
*
*/
public void setResponseFeatures(SituationExchangeServiceCapabilities.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}SituationExchangeVolumeGroup"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"hasMaximumNumberOfSituations"
})
public static class RequestPolicy
extends CapabilityRequestPolicyStructure
implements Serializable
{
@XmlElement(name = "HasMaximumNumberOfSituations", defaultValue = "false")
protected Boolean hasMaximumNumberOfSituations;
/**
* Gets the value of the hasMaximumNumberOfSituations property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isHasMaximumNumberOfSituations() {
return hasMaximumNumberOfSituations;
}
/**
* Sets the value of the hasMaximumNumberOfSituations property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setHasMaximumNumberOfSituations(Boolean value) {
this.hasMaximumNumberOfSituations = 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>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
public static class ResponseFeatures
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"/>
* <element ref="{http://www.siri.org.uk/siri}FilterByFacilityRef" minOccurs="0"/>
* <element name="FilterByLocationRef" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element ref="{http://www.siri.org.uk/siri}FilterByVehicleRef" minOccurs="0"/>
* <element name="FilterByMode" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="FilterByNetworkRef" type="{http://www.w3.org/2001/XMLSchema}boolean" 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 name="FilterByStopPlaceRef" type="{http://www.w3.org/2001/XMLSchema}boolean" 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"/>
* <element name="FilterByKeyword" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"defaultPreviewInterval",
"filterByFacilityRef",
"filterByLocationRef",
"filterByVehicleRef",
"filterByMode",
"filterByNetworkRef",
"filterByLineRef",
"filterByStopPointRef",
"filterByStopPlaceRef",
"filterByVehicleJourneyRef",
"filterByConnectionLinkRef",
"filterByInterchangeRef",
"filterBySpecificNeed",
"filterByKeyword"
})
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 = "FilterByMode")
protected Boolean filterByMode;
@XmlElement(name = "FilterByNetworkRef")
protected Boolean filterByNetworkRef;
@XmlElement(name = "FilterByLineRef", defaultValue = "true")
protected Boolean filterByLineRef;
@XmlElement(name = "FilterByStopPointRef", defaultValue = "true")
protected Boolean filterByStopPointRef;
@XmlElement(name = "FilterByStopPlaceRef")
protected Boolean filterByStopPlaceRef;
@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;
@XmlElement(name = "FilterByKeyword", defaultValue = "true")
protected Boolean filterByKeyword;
/**
* 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.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isFilterByFacilityRef() {
return filterByFacilityRef;
}
/**
* Sets the value of the filterByFacilityRef property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setFilterByFacilityRef(Boolean value) {
this.filterByFacilityRef = value;
}
/**
* Gets the value of the filterByLocationRef property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isFilterByLocationRef() {
return filterByLocationRef;
}
/**
* Sets the value of the filterByLocationRef property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
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 filterByMode property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isFilterByMode() {
return filterByMode;
}
/**
* Sets the value of the filterByMode property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setFilterByMode(Boolean value) {
this.filterByMode = value;
}
/**
* Gets the value of the filterByNetworkRef property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isFilterByNetworkRef() {
return filterByNetworkRef;
}
/**
* Sets the value of the filterByNetworkRef property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setFilterByNetworkRef(Boolean value) {
this.filterByNetworkRef = 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 filterByStopPlaceRef property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isFilterByStopPlaceRef() {
return filterByStopPlaceRef;
}
/**
* Sets the value of the filterByStopPlaceRef property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setFilterByStopPlaceRef(Boolean value) {
this.filterByStopPlaceRef = 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;
}
/**
* Gets the value of the filterByKeyword property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isFilterByKeyword() {
return filterByKeyword;
}
/**
* Sets the value of the filterByKeyword property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setFilterByKeyword(Boolean value) {
this.filterByKeyword = value;
}
}
}