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

de.drv.dsrv.extrastandard.namespace.error.Error Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-b10 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2013.02.27 at 11:29:43 PM CET 
//


package de.drv.dsrv.extrastandard.namespace.error;

import java.util.Calendar;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import de.drv.dsrv.extrastandard.namespace.components.ApplicationType;
import de.drv.dsrv.extrastandard.namespace.components.ClassifiableIDType;
import de.drv.dsrv.extrastandard.namespace.components.ReportType;
import org.w3._2001.xmlschema.Adapter1;


/**
 * 

Java class for ExtraErrorType complex type. * *

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

 * <complexType name="ExtraErrorType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Reason" type="{http://www.extra-standard.de/namespace/service/1}ExtraErrorReasonType"/>
 *         <element ref="{http://www.extra-standard.de/namespace/components/1}RequestID" minOccurs="0"/>
 *         <element ref="{http://www.extra-standard.de/namespace/components/1}ResponseID" minOccurs="0"/>
 *         <element ref="{http://www.extra-standard.de/namespace/components/1}TimeStamp"/>
 *         <element ref="{http://www.extra-standard.de/namespace/components/1}Application" minOccurs="0"/>
 *         <element ref="{http://www.extra-standard.de/namespace/components/1}Report"/>
 *       </sequence>
 *       <attribute name="version">
 *         <simpleType>
 *           <restriction base="{http://www.extra-standard.de/namespace/components/1}AbstractVersionType">
 *             <enumeration value="1.0"/>
 *           </restriction>
 *         </simpleType>
 *       </attribute>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ExtraErrorType", propOrder = { "reason", "requestID", "responseID", "timeStamp", "application", "report" }) @XmlRootElement public class Error { @XmlElement(name = "Reason", required = true) protected String reason; @XmlElement(name = "RequestID", namespace = "http://www.extra-standard.de/namespace/components/1") protected ClassifiableIDType requestID; @XmlElement(name = "ResponseID", namespace = "http://www.extra-standard.de/namespace/components/1") protected ClassifiableIDType responseID; @XmlElement(name = "TimeStamp", namespace = "http://www.extra-standard.de/namespace/components/1", required = true, type = String.class) @XmlJavaTypeAdapter(Adapter1 .class) @XmlSchemaType(name = "dateTime") protected Calendar timeStamp; @XmlElement(name = "Application", namespace = "http://www.extra-standard.de/namespace/components/1") protected ApplicationType application; @XmlElement(name = "Report", namespace = "http://www.extra-standard.de/namespace/components/1", required = true) protected ReportType report; @XmlAttribute(name = "version") protected String version; /** * Gets the value of the reason property. * * @return * possible object is * {@link String } * */ public String getReason() { return reason; } /** * Sets the value of the reason property. * * @param value * allowed object is * {@link String } * */ public void setReason(String value) { this.reason = value; } /** * Gets the value of the requestID property. * * @return * possible object is * {@link ClassifiableIDType } * */ public ClassifiableIDType getRequestID() { return requestID; } /** * Sets the value of the requestID property. * * @param value * allowed object is * {@link ClassifiableIDType } * */ public void setRequestID(ClassifiableIDType value) { this.requestID = value; } /** * Gets the value of the responseID property. * * @return * possible object is * {@link ClassifiableIDType } * */ public ClassifiableIDType getResponseID() { return responseID; } /** * Sets the value of the responseID property. * * @param value * allowed object is * {@link ClassifiableIDType } * */ public void setResponseID(ClassifiableIDType value) { this.responseID = value; } /** * Gets the value of the timeStamp property. * * @return * possible object is * {@link String } * */ public Calendar getTimeStamp() { return timeStamp; } /** * Sets the value of the timeStamp property. * * @param value * allowed object is * {@link String } * */ public void setTimeStamp(Calendar value) { this.timeStamp = value; } /** * Gets the value of the application property. * * @return * possible object is * {@link ApplicationType } * */ public ApplicationType getApplication() { return application; } /** * Sets the value of the application property. * * @param value * allowed object is * {@link ApplicationType } * */ public void setApplication(ApplicationType value) { this.application = value; } /** * Gets the value of the report property. * * @return * possible object is * {@link ReportType } * */ public ReportType getReport() { return report; } /** * Sets the value of the report property. * * @param value * allowed object is * {@link ReportType } * */ public void setReport(ReportType value) { this.report = value; } /** * Gets the value of the version property. * * @return * possible object is * {@link String } * */ public String getVersion() { return version; } /** * Sets the value of the version property. * * @param value * allowed object is * {@link String } * */ public void setVersion(String value) { this.version = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy