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

de.vdv.ojp20.siri.ErrorConditionStructure Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.5 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
//


package de.vdv.ojp20.siri;

import de.vdv.ojp20.OJPErrorStructure;
import jakarta.xml.bind.JAXBElement;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlElementRef;
import jakarta.xml.bind.annotation.XmlType;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.opentripplanner.ojp.netex.OmitNullsToStringStyle;


/**
 * 

Java class for ErrorConditionStructure complex type

. * *

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

* *
{@code
 * 
 *   
 *     
 *       
 *         
 *           
 *         
 *         
 *       
 *     
 *   
 * 
 * }
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ErrorConditionStructure", propOrder = { "serviceNotAvailableError", "capabilityNotSupportedError", "accessNotAllowedError", "invalidDataReferencesError", "beyondDataHorizon", "noInfoForTopicError", "parametersIgnoredError", "unknownExtensionsError", "allowedResourceUsageExceededError", "otherError", "description" }) public class ErrorConditionStructure { @XmlElement(name = "ServiceNotAvailableError") protected ServiceNotAvailableErrorStructure serviceNotAvailableError; @XmlElement(name = "CapabilityNotSupportedError") protected CapabilityNotSupportedErrorStructure capabilityNotSupportedError; @XmlElement(name = "AccessNotAllowedError") protected AccessNotAllowedErrorStructure accessNotAllowedError; @XmlElement(name = "InvalidDataReferencesError") protected InvalidDataReferencesErrorStructure invalidDataReferencesError; @XmlElement(name = "BeyondDataHorizon") protected BeyondDataHorizonErrorStructure beyondDataHorizon; @XmlElement(name = "NoInfoForTopicError") protected NoInfoForTopicErrorStructure noInfoForTopicError; @XmlElement(name = "ParametersIgnoredError") protected ParametersIgnoredErrorStructure parametersIgnoredError; @XmlElement(name = "UnknownExtensionsError") protected UnknownExtensionsErrorStructure unknownExtensionsError; @XmlElement(name = "AllowedResourceUsageExceededError") protected AllowedResourceUsageExceededErrorStructure allowedResourceUsageExceededError; @XmlElementRef(name = "OtherError", namespace = "http://www.siri.org.uk/siri", type = JAXBElement.class, required = false) protected JAXBElement otherError; @XmlElement(name = "Description") protected NaturalLanguageStringStructure description; /** * 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 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 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 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 beyondDataHorizon property. * * @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 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; } /** * 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 unknownExtensionsError property. * * @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 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; } /** * Gets the value of the otherError property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link OJPErrorStructure }{@code >} * {@link JAXBElement }{@code <}{@link OtherErrorStructure }{@code >} * */ public JAXBElement getOtherError() { return otherError; } /** * Sets the value of the otherError property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link OJPErrorStructure }{@code >} * {@link JAXBElement }{@code <}{@link OtherErrorStructure }{@code >} * */ public void setOtherError(JAXBElement value) { this.otherError = 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; } public ErrorConditionStructure withServiceNotAvailableError(ServiceNotAvailableErrorStructure value) { setServiceNotAvailableError(value); return this; } public ErrorConditionStructure withCapabilityNotSupportedError(CapabilityNotSupportedErrorStructure value) { setCapabilityNotSupportedError(value); return this; } public ErrorConditionStructure withAccessNotAllowedError(AccessNotAllowedErrorStructure value) { setAccessNotAllowedError(value); return this; } public ErrorConditionStructure withInvalidDataReferencesError(InvalidDataReferencesErrorStructure value) { setInvalidDataReferencesError(value); return this; } public ErrorConditionStructure withBeyondDataHorizon(BeyondDataHorizonErrorStructure value) { setBeyondDataHorizon(value); return this; } public ErrorConditionStructure withNoInfoForTopicError(NoInfoForTopicErrorStructure value) { setNoInfoForTopicError(value); return this; } public ErrorConditionStructure withParametersIgnoredError(ParametersIgnoredErrorStructure value) { setParametersIgnoredError(value); return this; } public ErrorConditionStructure withUnknownExtensionsError(UnknownExtensionsErrorStructure value) { setUnknownExtensionsError(value); return this; } public ErrorConditionStructure withAllowedResourceUsageExceededError(AllowedResourceUsageExceededErrorStructure value) { setAllowedResourceUsageExceededError(value); return this; } public ErrorConditionStructure withOtherError(JAXBElement value) { setOtherError(value); return this; } public ErrorConditionStructure withDescription(NaturalLanguageStringStructure value) { setDescription(value); return this; } /** * Generates a String representation of the contents of this type. * This is an extension method, produced by the 'ts' xjc plugin * */ @Override public String toString() { return ToStringBuilder.reflectionToString(this, OmitNullsToStringStyle.INSTANCE); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy