![JAR search and dependency download from the Maven repository](/logo.png)
uk.org.siri.siri21.CapabilitiesRequest 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.XmlAttribute;
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.CollapsedStringAdapter;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Type for Requests for capabilities of the current system.
*
* Java class for CapabilitiesRequestStructure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CapabilitiesRequestStructure">
* <complexContent>
* <extension base="{http://www.siri.org.uk/siri}AuthenticatedRequestStructure">
* <sequence>
* <element name="Address" type="{http://www.siri.org.uk/siri}EndpointAddress" minOccurs="0"/>
* <element ref="{http://www.siri.org.uk/siri}RequestorRef"/>
* <group ref="{http://www.siri.org.uk/siri}DelegatorEndpointGroup"/>
* <group ref="{http://www.siri.org.uk/siri}SiriServiceCapabilitiesRequestGroup"/>
* </sequence>
* <attribute name="version" type="{http://www.siri.org.uk/siri}VersionString" default="2.1" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CapabilitiesRequestStructure", propOrder = {
"address",
"requestorRef",
"delegatorAddress",
"delegatorRef",
"productionTimetableCapabilitiesRequest",
"estimatedTimetableCapabilitiesRequest",
"stopTimetableCapabilitiesRequest",
"stopMonitoringCapabilitiesRequest",
"vehicleMonitoringCapabilitiesRequest",
"connectionTimetableCapabilitiesRequest",
"connectionMonitoringCapabilitiesRequest",
"generalMessageCapabilitiesRequest",
"facilityMonitoringCapabilitiesRequest",
"situationExchangeCapabilitiesRequest"
})
@XmlRootElement(name = "CapabilitiesRequest")
public class CapabilitiesRequest
extends AuthenticatedRequestStructure
implements Serializable
{
@XmlElement(name = "Address")
@XmlSchemaType(name = "anyURI")
protected String address;
@XmlElement(name = "RequestorRef", required = true)
protected RequestorRef requestorRef;
@XmlElement(name = "DelegatorAddress")
@XmlSchemaType(name = "anyURI")
protected String delegatorAddress;
@XmlElement(name = "DelegatorRef")
protected RequestorRef delegatorRef;
@XmlElement(name = "ProductionTimetableCapabilitiesRequest")
protected ProductionTimetableCapabilitiesRequest productionTimetableCapabilitiesRequest;
@XmlElement(name = "EstimatedTimetableCapabilitiesRequest")
protected ServiceCapabilitiesRequestStructure estimatedTimetableCapabilitiesRequest;
@XmlElement(name = "StopTimetableCapabilitiesRequest")
protected ServiceCapabilitiesRequestStructure stopTimetableCapabilitiesRequest;
@XmlElement(name = "StopMonitoringCapabilitiesRequest")
protected ServiceCapabilitiesRequestStructure stopMonitoringCapabilitiesRequest;
@XmlElement(name = "VehicleMonitoringCapabilitiesRequest")
protected ServiceCapabilitiesRequestStructure vehicleMonitoringCapabilitiesRequest;
@XmlElement(name = "ConnectionTimetableCapabilitiesRequest")
protected ServiceCapabilitiesRequestStructure connectionTimetableCapabilitiesRequest;
@XmlElement(name = "ConnectionMonitoringCapabilitiesRequest")
protected ServiceCapabilitiesRequestStructure connectionMonitoringCapabilitiesRequest;
@XmlElement(name = "GeneralMessageCapabilitiesRequest")
protected ServiceCapabilitiesRequestStructure generalMessageCapabilitiesRequest;
@XmlElement(name = "FacilityMonitoringCapabilitiesRequest")
protected ServiceCapabilitiesRequestStructure facilityMonitoringCapabilitiesRequest;
@XmlElement(name = "SituationExchangeCapabilitiesRequest")
protected ServiceCapabilitiesRequestStructure situationExchangeCapabilitiesRequest;
@XmlAttribute(name = "version")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String version;
/**
* Gets the value of the address property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAddress() {
return address;
}
/**
* Sets the value of the address property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAddress(String value) {
this.address = value;
}
/**
* Gets the value of the requestorRef property.
*
* @return
* possible object is
* {@link RequestorRef }
*
*/
public RequestorRef getRequestorRef() {
return requestorRef;
}
/**
* Sets the value of the requestorRef property.
*
* @param value
* allowed object is
* {@link RequestorRef }
*
*/
public void setRequestorRef(RequestorRef value) {
this.requestorRef = value;
}
/**
* Gets the value of the delegatorAddress property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDelegatorAddress() {
return delegatorAddress;
}
/**
* Sets the value of the delegatorAddress property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDelegatorAddress(String value) {
this.delegatorAddress = value;
}
/**
* Gets the value of the delegatorRef property.
*
* @return
* possible object is
* {@link RequestorRef }
*
*/
public RequestorRef getDelegatorRef() {
return delegatorRef;
}
/**
* Sets the value of the delegatorRef property.
*
* @param value
* allowed object is
* {@link RequestorRef }
*
*/
public void setDelegatorRef(RequestorRef value) {
this.delegatorRef = value;
}
/**
* Gets the value of the productionTimetableCapabilitiesRequest property.
*
* @return
* possible object is
* {@link ProductionTimetableCapabilitiesRequest }
*
*/
public ProductionTimetableCapabilitiesRequest getProductionTimetableCapabilitiesRequest() {
return productionTimetableCapabilitiesRequest;
}
/**
* Sets the value of the productionTimetableCapabilitiesRequest property.
*
* @param value
* allowed object is
* {@link ProductionTimetableCapabilitiesRequest }
*
*/
public void setProductionTimetableCapabilitiesRequest(ProductionTimetableCapabilitiesRequest value) {
this.productionTimetableCapabilitiesRequest = value;
}
/**
* Gets the value of the estimatedTimetableCapabilitiesRequest property.
*
* @return
* possible object is
* {@link ServiceCapabilitiesRequestStructure }
*
*/
public ServiceCapabilitiesRequestStructure getEstimatedTimetableCapabilitiesRequest() {
return estimatedTimetableCapabilitiesRequest;
}
/**
* Sets the value of the estimatedTimetableCapabilitiesRequest property.
*
* @param value
* allowed object is
* {@link ServiceCapabilitiesRequestStructure }
*
*/
public void setEstimatedTimetableCapabilitiesRequest(ServiceCapabilitiesRequestStructure value) {
this.estimatedTimetableCapabilitiesRequest = value;
}
/**
* Gets the value of the stopTimetableCapabilitiesRequest property.
*
* @return
* possible object is
* {@link ServiceCapabilitiesRequestStructure }
*
*/
public ServiceCapabilitiesRequestStructure getStopTimetableCapabilitiesRequest() {
return stopTimetableCapabilitiesRequest;
}
/**
* Sets the value of the stopTimetableCapabilitiesRequest property.
*
* @param value
* allowed object is
* {@link ServiceCapabilitiesRequestStructure }
*
*/
public void setStopTimetableCapabilitiesRequest(ServiceCapabilitiesRequestStructure value) {
this.stopTimetableCapabilitiesRequest = value;
}
/**
* Gets the value of the stopMonitoringCapabilitiesRequest property.
*
* @return
* possible object is
* {@link ServiceCapabilitiesRequestStructure }
*
*/
public ServiceCapabilitiesRequestStructure getStopMonitoringCapabilitiesRequest() {
return stopMonitoringCapabilitiesRequest;
}
/**
* Sets the value of the stopMonitoringCapabilitiesRequest property.
*
* @param value
* allowed object is
* {@link ServiceCapabilitiesRequestStructure }
*
*/
public void setStopMonitoringCapabilitiesRequest(ServiceCapabilitiesRequestStructure value) {
this.stopMonitoringCapabilitiesRequest = value;
}
/**
* Gets the value of the vehicleMonitoringCapabilitiesRequest property.
*
* @return
* possible object is
* {@link ServiceCapabilitiesRequestStructure }
*
*/
public ServiceCapabilitiesRequestStructure getVehicleMonitoringCapabilitiesRequest() {
return vehicleMonitoringCapabilitiesRequest;
}
/**
* Sets the value of the vehicleMonitoringCapabilitiesRequest property.
*
* @param value
* allowed object is
* {@link ServiceCapabilitiesRequestStructure }
*
*/
public void setVehicleMonitoringCapabilitiesRequest(ServiceCapabilitiesRequestStructure value) {
this.vehicleMonitoringCapabilitiesRequest = value;
}
/**
* Gets the value of the connectionTimetableCapabilitiesRequest property.
*
* @return
* possible object is
* {@link ServiceCapabilitiesRequestStructure }
*
*/
public ServiceCapabilitiesRequestStructure getConnectionTimetableCapabilitiesRequest() {
return connectionTimetableCapabilitiesRequest;
}
/**
* Sets the value of the connectionTimetableCapabilitiesRequest property.
*
* @param value
* allowed object is
* {@link ServiceCapabilitiesRequestStructure }
*
*/
public void setConnectionTimetableCapabilitiesRequest(ServiceCapabilitiesRequestStructure value) {
this.connectionTimetableCapabilitiesRequest = value;
}
/**
* Gets the value of the connectionMonitoringCapabilitiesRequest property.
*
* @return
* possible object is
* {@link ServiceCapabilitiesRequestStructure }
*
*/
public ServiceCapabilitiesRequestStructure getConnectionMonitoringCapabilitiesRequest() {
return connectionMonitoringCapabilitiesRequest;
}
/**
* Sets the value of the connectionMonitoringCapabilitiesRequest property.
*
* @param value
* allowed object is
* {@link ServiceCapabilitiesRequestStructure }
*
*/
public void setConnectionMonitoringCapabilitiesRequest(ServiceCapabilitiesRequestStructure value) {
this.connectionMonitoringCapabilitiesRequest = value;
}
/**
* Gets the value of the generalMessageCapabilitiesRequest property.
*
* @return
* possible object is
* {@link ServiceCapabilitiesRequestStructure }
*
*/
public ServiceCapabilitiesRequestStructure getGeneralMessageCapabilitiesRequest() {
return generalMessageCapabilitiesRequest;
}
/**
* Sets the value of the generalMessageCapabilitiesRequest property.
*
* @param value
* allowed object is
* {@link ServiceCapabilitiesRequestStructure }
*
*/
public void setGeneralMessageCapabilitiesRequest(ServiceCapabilitiesRequestStructure value) {
this.generalMessageCapabilitiesRequest = value;
}
/**
* Gets the value of the facilityMonitoringCapabilitiesRequest property.
*
* @return
* possible object is
* {@link ServiceCapabilitiesRequestStructure }
*
*/
public ServiceCapabilitiesRequestStructure getFacilityMonitoringCapabilitiesRequest() {
return facilityMonitoringCapabilitiesRequest;
}
/**
* Sets the value of the facilityMonitoringCapabilitiesRequest property.
*
* @param value
* allowed object is
* {@link ServiceCapabilitiesRequestStructure }
*
*/
public void setFacilityMonitoringCapabilitiesRequest(ServiceCapabilitiesRequestStructure value) {
this.facilityMonitoringCapabilitiesRequest = value;
}
/**
* Gets the value of the situationExchangeCapabilitiesRequest property.
*
* @return
* possible object is
* {@link ServiceCapabilitiesRequestStructure }
*
*/
public ServiceCapabilitiesRequestStructure getSituationExchangeCapabilitiesRequest() {
return situationExchangeCapabilitiesRequest;
}
/**
* Sets the value of the situationExchangeCapabilitiesRequest property.
*
* @param value
* allowed object is
* {@link ServiceCapabilitiesRequestStructure }
*
*/
public void setSituationExchangeCapabilitiesRequest(ServiceCapabilitiesRequestStructure value) {
this.situationExchangeCapabilitiesRequest = value;
}
/**
* Gets the value of the version property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersion() {
if (version == null) {
return "2.1";
} else {
return version;
}
}
/**
* Sets the value of the version property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersion(String value) {
this.version = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy