summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/mis/usp_v2/eai/common/ResultType.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/mis/usp_v2/eai/common/ResultType.java')
-rw-r--r--src/main/java/at/gv/util/xsd/mis/usp_v2/eai/common/ResultType.java124
1 files changed, 124 insertions, 0 deletions
diff --git a/src/main/java/at/gv/util/xsd/mis/usp_v2/eai/common/ResultType.java b/src/main/java/at/gv/util/xsd/mis/usp_v2/eai/common/ResultType.java
new file mode 100644
index 0000000..c5d44df
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/mis/usp_v2/eai/common/ResultType.java
@@ -0,0 +1,124 @@
+
+package at.gv.util.xsd.mis.usp_v2.eai.common;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlSchemaType;
+import javax.xml.bind.annotation.XmlSeeAlso;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java-Klasse für ResultType complex type.
+ *
+ * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
+ *
+ * <pre>
+ * &lt;complexType name="ResultType"&gt;
+ * &lt;complexContent&gt;
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
+ * &lt;sequence minOccurs="0"&gt;
+ * &lt;element name="ErrorCode" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
+ * &lt;element name="ErrorMessage" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
+ * &lt;element name="ErrorLevel" type="{http://eai.brz.gv.at/services/vdds/common}SeverityType"/&gt;
+ * &lt;/sequence&gt;
+ * &lt;/restriction&gt;
+ * &lt;/complexContent&gt;
+ * &lt;/complexType&gt;
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "ResultType", propOrder = {
+ "errorCode",
+ "errorMessage",
+ "errorLevel"
+})
+@XmlSeeAlso({
+ ReferableResultType.class
+})
+public class ResultType {
+
+ @XmlElement(name = "ErrorCode")
+ protected String errorCode;
+ @XmlElement(name = "ErrorMessage")
+ protected String errorMessage;
+ @XmlElement(name = "ErrorLevel", defaultValue = "ERROR")
+ @XmlSchemaType(name = "token")
+ protected SeverityType errorLevel;
+
+ /**
+ * Ruft den Wert der errorCode-Eigenschaft ab.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getErrorCode() {
+ return errorCode;
+ }
+
+ /**
+ * Legt den Wert der errorCode-Eigenschaft fest.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setErrorCode(String value) {
+ this.errorCode = value;
+ }
+
+ /**
+ * Ruft den Wert der errorMessage-Eigenschaft ab.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getErrorMessage() {
+ return errorMessage;
+ }
+
+ /**
+ * Legt den Wert der errorMessage-Eigenschaft fest.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setErrorMessage(String value) {
+ this.errorMessage = value;
+ }
+
+ /**
+ * Ruft den Wert der errorLevel-Eigenschaft ab.
+ *
+ * @return
+ * possible object is
+ * {@link SeverityType }
+ *
+ */
+ public SeverityType getErrorLevel() {
+ return errorLevel;
+ }
+
+ /**
+ * Legt den Wert der errorLevel-Eigenschaft fest.
+ *
+ * @param value
+ * allowed object is
+ * {@link SeverityType }
+ *
+ */
+ public void setErrorLevel(SeverityType value) {
+ this.errorLevel = value;
+ }
+
+}