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

de.gematik.ws.conn.connectorcommon.v5.Status Maven / Gradle / Ivy

The newest version!

package de.gematik.ws.conn.connectorcommon.v5;

import de.gematik.ws.tel.error.v2.Error;
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;
import jakarta.xml.bind.annotation.adapters.CollapsedStringAdapter;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * 

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>
 *         <element ref="{http://ws.gematik.de/conn/ConnectorCommon/v5.0}Result"/>
 *         <element ref="{http://ws.gematik.de/tel/error/v2.0}Error" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "result", "error" }) @XmlRootElement(name = "Status") public class Status { @XmlElement(name = "Result", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String result; @XmlElement(name = "Error", namespace = "http://ws.gematik.de/tel/error/v2.0") protected Error error; /** * * Beschreibt den Ausführunggstatus der * gesamten Operation. Mögliche Werte sind in * der Enumeration ResultEnum angegeben. * Allerdings können pro Operation weitere * Werte definiert werden. * * * @return * possible object is * {@link String } * */ public String getResult() { return result; } /** * Sets the value of the result property. * * @param value * allowed object is * {@link String } * */ public void setResult(String value) { this.result = value; } /** * Gets the value of the error property. * * @return * possible object is * {@link Error } * */ public Error getError() { return error; } /** * Sets the value of the error property. * * @param value * allowed object is * {@link Error } * */ public void setError(Error value) { this.error = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy