![JAR search and dependency download from the Maven repository](/logo.png)
uk.org.siri.siri21.TerminationResponseStatusStructure 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.ZonedDateTime;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.w3._2001.xmlschema.Adapter1;
/**
* Type for Status of termination response.
*
* Java class for TerminationResponseStatusStructure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="TerminationResponseStatusStructure">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://www.siri.org.uk/siri}ResponseTimestamp" minOccurs="0"/>
* <group ref="{http://www.siri.org.uk/siri}ContextualisedResponseEndpointGroup"/>
* <group ref="{http://www.siri.org.uk/siri}SubscriptionIdentifierResourcePropertyGroup" minOccurs="0"/>
* <element ref="{http://www.siri.org.uk/siri}Status" minOccurs="0"/>
* <element name="ErrorCondition" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <choice>
* <element ref="{http://www.siri.org.uk/siri}CapabilityNotSupportedError"/>
* <element ref="{http://www.siri.org.uk/siri}UnknownSubscriberError"/>
* <element ref="{http://www.siri.org.uk/siri}UnknownSubscriptionError"/>
* <element ref="{http://www.siri.org.uk/siri}OtherError"/>
* </choice>
* <element name="Description" type="{http://www.siri.org.uk/siri}ErrorDescriptionStructure" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TerminationResponseStatusStructure", propOrder = {
"responseTimestamp",
"requestMessageRef",
"subscriberRef",
"subscriptionFilterRef",
"subscriptionRef",
"status",
"errorCondition"
})
public class TerminationResponseStatusStructure
implements Serializable
{
@XmlElement(name = "ResponseTimestamp", type = String.class)
@XmlJavaTypeAdapter(Adapter1 .class)
@XmlSchemaType(name = "dateTime")
protected ZonedDateTime responseTimestamp;
@XmlElement(name = "RequestMessageRef")
protected MessageRefStructure requestMessageRef;
@XmlElement(name = "SubscriberRef")
protected RequestorRef subscriberRef;
@XmlElement(name = "SubscriptionFilterRef")
protected SubscriptionFilterRefStructure subscriptionFilterRef;
@XmlElement(name = "SubscriptionRef")
protected SubscriptionRefStructure subscriptionRef;
@XmlElement(name = "Status", defaultValue = "true")
protected Boolean status;
@XmlElement(name = "ErrorCondition")
protected TerminationResponseStatusStructure.ErrorCondition errorCondition;
/**
* Gets the value of the responseTimestamp property.
*
* @return
* possible object is
* {@link String }
*
*/
public ZonedDateTime getResponseTimestamp() {
return responseTimestamp;
}
/**
* Sets the value of the responseTimestamp property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setResponseTimestamp(ZonedDateTime value) {
this.responseTimestamp = value;
}
/**
* Gets the value of the requestMessageRef property.
*
* @return
* possible object is
* {@link MessageRefStructure }
*
*/
public MessageRefStructure getRequestMessageRef() {
return requestMessageRef;
}
/**
* Sets the value of the requestMessageRef property.
*
* @param value
* allowed object is
* {@link MessageRefStructure }
*
*/
public void setRequestMessageRef(MessageRefStructure value) {
this.requestMessageRef = value;
}
/**
* Gets the value of the subscriberRef property.
*
* @return
* possible object is
* {@link RequestorRef }
*
*/
public RequestorRef getSubscriberRef() {
return subscriberRef;
}
/**
* Sets the value of the subscriberRef property.
*
* @param value
* allowed object is
* {@link RequestorRef }
*
*/
public void setSubscriberRef(RequestorRef value) {
this.subscriberRef = value;
}
/**
* Gets the value of the subscriptionFilterRef property.
*
* @return
* possible object is
* {@link SubscriptionFilterRefStructure }
*
*/
public SubscriptionFilterRefStructure getSubscriptionFilterRef() {
return subscriptionFilterRef;
}
/**
* Sets the value of the subscriptionFilterRef property.
*
* @param value
* allowed object is
* {@link SubscriptionFilterRefStructure }
*
*/
public void setSubscriptionFilterRef(SubscriptionFilterRefStructure value) {
this.subscriptionFilterRef = value;
}
/**
* Gets the value of the subscriptionRef property.
*
* @return
* possible object is
* {@link SubscriptionRefStructure }
*
*/
public SubscriptionRefStructure getSubscriptionRef() {
return subscriptionRef;
}
/**
* Sets the value of the subscriptionRef property.
*
* @param value
* allowed object is
* {@link SubscriptionRefStructure }
*
*/
public void setSubscriptionRef(SubscriptionRefStructure value) {
this.subscriptionRef = value;
}
/**
* Gets the value of the status property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isStatus() {
return status;
}
/**
* Sets the value of the status property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setStatus(Boolean value) {
this.status = value;
}
/**
* Gets the value of the errorCondition property.
*
* @return
* possible object is
* {@link TerminationResponseStatusStructure.ErrorCondition }
*
*/
public TerminationResponseStatusStructure.ErrorCondition getErrorCondition() {
return errorCondition;
}
/**
* Sets the value of the errorCondition property.
*
* @param value
* allowed object is
* {@link TerminationResponseStatusStructure.ErrorCondition }
*
*/
public void setErrorCondition(TerminationResponseStatusStructure.ErrorCondition value) {
this.errorCondition = 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>
* <choice>
* <element ref="{http://www.siri.org.uk/siri}CapabilityNotSupportedError"/>
* <element ref="{http://www.siri.org.uk/siri}UnknownSubscriberError"/>
* <element ref="{http://www.siri.org.uk/siri}UnknownSubscriptionError"/>
* <element ref="{http://www.siri.org.uk/siri}OtherError"/>
* </choice>
* <element name="Description" type="{http://www.siri.org.uk/siri}ErrorDescriptionStructure" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"otherError",
"unknownSubscriptionError",
"unknownSubscriberError",
"capabilityNotSupportedError",
"description"
})
public static class ErrorCondition
implements Serializable
{
@XmlElement(name = "OtherError")
protected OtherErrorStructure otherError;
@XmlElement(name = "UnknownSubscriptionError")
protected UnknownSubscriptionErrorStructure unknownSubscriptionError;
@XmlElement(name = "UnknownSubscriberError")
protected UnknownSubscriberErrorStructure unknownSubscriberError;
@XmlElement(name = "CapabilityNotSupportedError")
protected CapabilityNotSupportedErrorStructure capabilityNotSupportedError;
@XmlElement(name = "Description")
protected ErrorDescriptionStructure description;
/**
* Gets the value of the otherError property.
*
* @return
* possible object is
* {@link OtherErrorStructure }
*
*/
public OtherErrorStructure getOtherError() {
return otherError;
}
/**
* Sets the value of the otherError property.
*
* @param value
* allowed object is
* {@link OtherErrorStructure }
*
*/
public void setOtherError(OtherErrorStructure value) {
this.otherError = value;
}
/**
* Gets the value of the unknownSubscriptionError property.
*
* @return
* possible object is
* {@link UnknownSubscriptionErrorStructure }
*
*/
public UnknownSubscriptionErrorStructure getUnknownSubscriptionError() {
return unknownSubscriptionError;
}
/**
* Sets the value of the unknownSubscriptionError property.
*
* @param value
* allowed object is
* {@link UnknownSubscriptionErrorStructure }
*
*/
public void setUnknownSubscriptionError(UnknownSubscriptionErrorStructure value) {
this.unknownSubscriptionError = value;
}
/**
* Gets the value of the unknownSubscriberError property.
*
* @return
* possible object is
* {@link UnknownSubscriberErrorStructure }
*
*/
public UnknownSubscriberErrorStructure getUnknownSubscriberError() {
return unknownSubscriberError;
}
/**
* Sets the value of the unknownSubscriberError property.
*
* @param value
* allowed object is
* {@link UnknownSubscriberErrorStructure }
*
*/
public void setUnknownSubscriberError(UnknownSubscriberErrorStructure value) {
this.unknownSubscriberError = value;
}
/**
* Gets the value of the capabilityNotSupportedError property.
*
* @return
* possible object is
* {@link CapabilityNotSupportedErrorStructure }
*
*/
public CapabilityNotSupportedErrorStructure getCapabilityNotSupportedError() {
return capabilityNotSupportedError;
}
/**
* Sets the value of the capabilityNotSupportedError property.
*
* @param value
* allowed object is
* {@link CapabilityNotSupportedErrorStructure }
*
*/
public void setCapabilityNotSupportedError(CapabilityNotSupportedErrorStructure value) {
this.capabilityNotSupportedError = value;
}
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link ErrorDescriptionStructure }
*
*/
public ErrorDescriptionStructure getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link ErrorDescriptionStructure }
*
*/
public void setDescription(ErrorDescriptionStructure value) {
this.description = value;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy