summaryrefslogtreecommitdiff
path: root/STALService/src/main/java/at/gv/egiz/stal/service/types/GetHashDataInputType.java
diff options
context:
space:
mode:
Diffstat (limited to 'STALService/src/main/java/at/gv/egiz/stal/service/types/GetHashDataInputType.java')
-rw-r--r--STALService/src/main/java/at/gv/egiz/stal/service/types/GetHashDataInputType.java42
1 files changed, 33 insertions, 9 deletions
diff --git a/STALService/src/main/java/at/gv/egiz/stal/service/types/GetHashDataInputType.java b/STALService/src/main/java/at/gv/egiz/stal/service/types/GetHashDataInputType.java
index 037e94eb..2a3a58bf 100644
--- a/STALService/src/main/java/at/gv/egiz/stal/service/types/GetHashDataInputType.java
+++ b/STALService/src/main/java/at/gv/egiz/stal/service/types/GetHashDataInputType.java
@@ -21,8 +21,6 @@
* that you distribute must include a readable copy of the "NOTICE" text file.
*/
-
-
package at.gv.egiz.stal.service.types;
import java.util.ArrayList;
@@ -49,6 +47,7 @@ import javax.xml.bind.annotation.XmlType;
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="ID" type="{http://www.w3.org/2001/XMLSchema}string" />
+ * <attribute name="digest" type="{http://www.w3.org/2001/XMLSchema}base64Binary" //>
* </restriction>
* </complexContent>
* </complexType>
@@ -133,13 +132,14 @@ public class GetHashDataInputType {
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
- * &lt;complexType&gt;
- * &lt;complexContent&gt;
- * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
- * &lt;attribute name="ID" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
- * &lt;/restriction&gt;
- * &lt;/complexContent&gt;
- * &lt;/complexType&gt;
+ * &lt;complexType>
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;attribute name="ID" type="{http://www.w3.org/2001/XMLSchema}string" />
+ * &lt;attribute name="digest" type="{http://www.w3.org/2001/XMLSchema}base64Binary" />
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
* </pre>
*
*
@@ -150,6 +150,8 @@ public class GetHashDataInputType {
@XmlAttribute(name = "ID")
protected String id;
+ @XmlAttribute
+ protected byte[] digest;
/**
* Gets the value of the id property.
@@ -175,6 +177,28 @@ public class GetHashDataInputType {
this.id = value;
}
+ /**
+ * Gets the value of the digest property.
+ *
+ * @return
+ * possible object is
+ * byte[]
+ */
+ public byte[] getDigest() {
+ return digest;
+ }
+
+ /**
+ * Sets the value of the digest property.
+ *
+ * @param value
+ * allowed object is
+ * byte[]
+ */
+ public void setDigest(byte[] value) {
+ this.digest = ((byte[]) value);
+ }
+
}
}