All Downloads are FREE. Search and download functionalities are using the official Maven repository.

uk.org.siri.siri20.ErrorCondition Maven / Gradle / Ivy

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:39 PM UTC 
//


package uk.org.siri.siri20;

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 RequestErrorCondition.
 * 
 * 

Java class for ErrorConditionStructure complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="ErrorConditionStructure">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <choice>
 *           <group ref="{http://www.siri.org.uk/siri}ApplicationErrorGroup"/>
 *         </choice>
 *         <element name="Description" type="{http://www.siri.org.uk/siri}NaturalLanguageStringStructure" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ErrorConditionStructure", propOrder = { "otherError", "allowedResourceUsageExceededError", "unknownExtensionsError", "parametersIgnoredError", "noInfoForTopicError", "beyondDataHorizon", "invalidDataReferencesError", "accessNotAllowedError", "capabilityNotSupportedError", "serviceNotAvailableError", "description" }) @XmlRootElement(name = "ErrorCondition") public class ErrorCondition implements Serializable { @XmlElement(name = "OtherError") protected OtherErrorStructure otherError; @XmlElement(name = "AllowedResourceUsageExceededError") protected AllowedResourceUsageExceededErrorStructure allowedResourceUsageExceededError; @XmlElement(name = "UnknownExtensionsError") protected UnknownExtensionsErrorStructure unknownExtensionsError; @XmlElement(name = "ParametersIgnoredError") protected ParametersIgnoredErrorStructure parametersIgnoredError; @XmlElement(name = "NoInfoForTopicError") protected NoInfoForTopicErrorStructure noInfoForTopicError; @XmlElement(name = "BeyondDataHorizon") protected BeyondDataHorizonErrorStructure beyondDataHorizon; @XmlElement(name = "InvalidDataReferencesError") protected InvalidDataReferencesErrorStructure invalidDataReferencesError; @XmlElement(name = "AccessNotAllowedError") protected AccessNotAllowedErrorStructure accessNotAllowedError; @XmlElement(name = "CapabilityNotSupportedError") protected CapabilityNotSupportedErrorStructure capabilityNotSupportedError; @XmlElement(name = "ServiceNotAvailableError") protected ServiceNotAvailableErrorStructure serviceNotAvailableError; @XmlElement(name = "Description") protected NaturalLanguageStringStructure 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 allowedResourceUsageExceededError property. * * @return * possible object is * {@link AllowedResourceUsageExceededErrorStructure } * */ public AllowedResourceUsageExceededErrorStructure getAllowedResourceUsageExceededError() { return allowedResourceUsageExceededError; } /** * Sets the value of the allowedResourceUsageExceededError property. * * @param value * allowed object is * {@link AllowedResourceUsageExceededErrorStructure } * */ public void setAllowedResourceUsageExceededError(AllowedResourceUsageExceededErrorStructure value) { this.allowedResourceUsageExceededError = value; } /** * Error: Request contained extensions that were not supported by the producer. A response has been provided but some or all extensions have been ignored. +SIRI v2.0. * * @return * possible object is * {@link UnknownExtensionsErrorStructure } * */ public UnknownExtensionsErrorStructure getUnknownExtensionsError() { return unknownExtensionsError; } /** * Sets the value of the unknownExtensionsError property. * * @param value * allowed object is * {@link UnknownExtensionsErrorStructure } * */ public void setUnknownExtensionsError(UnknownExtensionsErrorStructure value) { this.unknownExtensionsError = value; } /** * Gets the value of the parametersIgnoredError property. * * @return * possible object is * {@link ParametersIgnoredErrorStructure } * */ public ParametersIgnoredErrorStructure getParametersIgnoredError() { return parametersIgnoredError; } /** * Sets the value of the parametersIgnoredError property. * * @param value * allowed object is * {@link ParametersIgnoredErrorStructure } * */ public void setParametersIgnoredError(ParametersIgnoredErrorStructure value) { this.parametersIgnoredError = value; } /** * Gets the value of the noInfoForTopicError property. * * @return * possible object is * {@link NoInfoForTopicErrorStructure } * */ public NoInfoForTopicErrorStructure getNoInfoForTopicError() { return noInfoForTopicError; } /** * Sets the value of the noInfoForTopicError property. * * @param value * allowed object is * {@link NoInfoForTopicErrorStructure } * */ public void setNoInfoForTopicError(NoInfoForTopicErrorStructure value) { this.noInfoForTopicError = value; } /** * Error: Data period or subscription period is outside of period covered by service. +SIRI v2.0. * * @return * possible object is * {@link BeyondDataHorizonErrorStructure } * */ public BeyondDataHorizonErrorStructure getBeyondDataHorizon() { return beyondDataHorizon; } /** * Sets the value of the beyondDataHorizon property. * * @param value * allowed object is * {@link BeyondDataHorizonErrorStructure } * */ public void setBeyondDataHorizon(BeyondDataHorizonErrorStructure value) { this.beyondDataHorizon = value; } /** * Gets the value of the invalidDataReferencesError property. * * @return * possible object is * {@link InvalidDataReferencesErrorStructure } * */ public InvalidDataReferencesErrorStructure getInvalidDataReferencesError() { return invalidDataReferencesError; } /** * Sets the value of the invalidDataReferencesError property. * * @param value * allowed object is * {@link InvalidDataReferencesErrorStructure } * */ public void setInvalidDataReferencesError(InvalidDataReferencesErrorStructure value) { this.invalidDataReferencesError = value; } /** * Gets the value of the accessNotAllowedError property. * * @return * possible object is * {@link AccessNotAllowedErrorStructure } * */ public AccessNotAllowedErrorStructure getAccessNotAllowedError() { return accessNotAllowedError; } /** * Sets the value of the accessNotAllowedError property. * * @param value * allowed object is * {@link AccessNotAllowedErrorStructure } * */ public void setAccessNotAllowedError(AccessNotAllowedErrorStructure value) { this.accessNotAllowedError = 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 serviceNotAvailableError property. * * @return * possible object is * {@link ServiceNotAvailableErrorStructure } * */ public ServiceNotAvailableErrorStructure getServiceNotAvailableError() { return serviceNotAvailableError; } /** * Sets the value of the serviceNotAvailableError property. * * @param value * allowed object is * {@link ServiceNotAvailableErrorStructure } * */ public void setServiceNotAvailableError(ServiceNotAvailableErrorStructure value) { this.serviceNotAvailableError = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link NaturalLanguageStringStructure } * */ public NaturalLanguageStringStructure getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link NaturalLanguageStringStructure } * */ public void setDescription(NaturalLanguageStringStructure value) { this.description = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy