![JAR search and dependency download from the Maven repository](/logo.png)
uk.org.siri.siri21.ServiceDeliveryErrorConditionElement 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 Standard ErrorConditiosn for Service request.
*
* Java class for ServiceDeliveryErrorConditionStructure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ServiceDeliveryErrorConditionStructure">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <choice>
* <group ref="{http://www.siri.org.uk/siri}ServiceRequestErrorGroup"/>
* </choice>
* <element name="Description" type="{http://www.siri.org.uk/siri}ErrorDescriptionStructure" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ServiceDeliveryErrorConditionStructure", propOrder = {
"otherError",
"allowedResourceUsageExceededError",
"unknownExtensionsError",
"parametersIgnoredError",
"noInfoForTopicError",
"beyondDataHorizon",
"invalidDataReferencesError",
"accessNotAllowedError",
"capabilityNotSupportedError",
"serviceNotAvailableError",
"endpointNotAvailableAccessError",
"endpointDeniedAccessError",
"unknownEndpointError",
"unknownParticipantError",
"unapprovedKeyAccessError",
"description"
})
@XmlRootElement(name = "ServiceDeliveryErrorConditionElement")
public class ServiceDeliveryErrorConditionElement
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 = "EndpointNotAvailableAccessError")
protected EndpointNotAvailableAccessStructure endpointNotAvailableAccessError;
@XmlElement(name = "EndpointDeniedAccessError")
protected EndpointDeniedAccessStructure endpointDeniedAccessError;
@XmlElement(name = "UnknownEndpointError")
protected UnknownEndpointErrorStructure unknownEndpointError;
@XmlElement(name = "UnknownParticipantError")
protected UnknownParticipantErrorStructure unknownParticipantError;
@XmlElement(name = "UnapprovedKeyAccessError")
protected UnapprovedKeyAccessStructure unapprovedKeyAccessError;
@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 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. (since SIRI 2.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. (since SIRI 2.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 endpointNotAvailableAccessError property.
*
* @return
* possible object is
* {@link EndpointNotAvailableAccessStructure }
*
*/
public EndpointNotAvailableAccessStructure getEndpointNotAvailableAccessError() {
return endpointNotAvailableAccessError;
}
/**
* Sets the value of the endpointNotAvailableAccessError property.
*
* @param value
* allowed object is
* {@link EndpointNotAvailableAccessStructure }
*
*/
public void setEndpointNotAvailableAccessError(EndpointNotAvailableAccessStructure value) {
this.endpointNotAvailableAccessError = value;
}
/**
* Gets the value of the endpointDeniedAccessError property.
*
* @return
* possible object is
* {@link EndpointDeniedAccessStructure }
*
*/
public EndpointDeniedAccessStructure getEndpointDeniedAccessError() {
return endpointDeniedAccessError;
}
/**
* Sets the value of the endpointDeniedAccessError property.
*
* @param value
* allowed object is
* {@link EndpointDeniedAccessStructure }
*
*/
public void setEndpointDeniedAccessError(EndpointDeniedAccessStructure value) {
this.endpointDeniedAccessError = value;
}
/**
* Gets the value of the unknownEndpointError property.
*
* @return
* possible object is
* {@link UnknownEndpointErrorStructure }
*
*/
public UnknownEndpointErrorStructure getUnknownEndpointError() {
return unknownEndpointError;
}
/**
* Sets the value of the unknownEndpointError property.
*
* @param value
* allowed object is
* {@link UnknownEndpointErrorStructure }
*
*/
public void setUnknownEndpointError(UnknownEndpointErrorStructure value) {
this.unknownEndpointError = value;
}
/**
* Error: Recipient for a message to be distributed is unknown. I.e. delegatior is found, but (since SIRI 2.0)
*
* @return
* possible object is
* {@link UnknownParticipantErrorStructure }
*
*/
public UnknownParticipantErrorStructure getUnknownParticipantError() {
return unknownParticipantError;
}
/**
* Sets the value of the unknownParticipantError property.
*
* @param value
* allowed object is
* {@link UnknownParticipantErrorStructure }
*
*/
public void setUnknownParticipantError(UnknownParticipantErrorStructure value) {
this.unknownParticipantError = value;
}
/**
* Gets the value of the unapprovedKeyAccessError property.
*
* @return
* possible object is
* {@link UnapprovedKeyAccessStructure }
*
*/
public UnapprovedKeyAccessStructure getUnapprovedKeyAccessError() {
return unapprovedKeyAccessError;
}
/**
* Sets the value of the unapprovedKeyAccessError property.
*
* @param value
* allowed object is
* {@link UnapprovedKeyAccessStructure }
*
*/
public void setUnapprovedKeyAccessError(UnapprovedKeyAccessStructure value) {
this.unapprovedKeyAccessError = 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