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

uk.org.siri.siri20.DataReceivedResponseStructure 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.XmlType;


/**
 * Type for Data received Acknowledgement Response.
 * 
 * 

Java class for DataReceivedResponseStructure complex type. * *

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

 * <complexType name="DataReceivedResponseStructure">
 *   <complexContent>
 *     <extension base="{http://www.siri.org.uk/siri}ConsumerResponseEndpointStructure">
 *       <sequence>
 *         <group ref="{http://www.siri.org.uk/siri}DataReceivedPayloadGroup"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DataReceivedResponseStructure", propOrder = { "status", "errorCondition" }) public class DataReceivedResponseStructure extends ConsumerResponseEndpointStructure implements Serializable { @XmlElement(name = "Status", defaultValue = "true") protected boolean status; @XmlElement(name = "ErrorCondition") protected DataReceivedResponseStructure.ErrorCondition errorCondition; /** * Gets the value of the status property. * */ public boolean isStatus() { return status; } /** * Sets the value of the status property. * */ public void setStatus(boolean value) { this.status = value; } /** * Gets the value of the errorCondition property. * * @return * possible object is * {@link DataReceivedResponseStructure.ErrorCondition } * */ public DataReceivedResponseStructure.ErrorCondition getErrorCondition() { return errorCondition; } /** * Sets the value of the errorCondition property. * * @param value * allowed object is * {@link DataReceivedResponseStructure.ErrorCondition } * */ public void setErrorCondition(DataReceivedResponseStructure.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}UnknownSubscriptionError"/>
     *           <element ref="{http://www.siri.org.uk/siri}OtherError"/>
     *         </choice>
     *         <sequence>
     *           <element name="Description" type="{http://www.siri.org.uk/siri}ErrorDescriptionStructure" minOccurs="0"/>
     *         </sequence>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "otherError", "unknownSubscriptionError", "description" }) public static class ErrorCondition implements Serializable { @XmlElement(name = "OtherError") protected OtherErrorStructure otherError; @XmlElement(name = "UnknownSubscriptionError") protected UnknownSubscriptionErrorStructure unknownSubscriptionError; @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 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