summaryrefslogtreecommitdiff
path: root/STAL/src/main/java/at/gv/egiz/stal/SignRequest.java
diff options
context:
space:
mode:
Diffstat (limited to 'STAL/src/main/java/at/gv/egiz/stal/SignRequest.java')
-rw-r--r--STAL/src/main/java/at/gv/egiz/stal/SignRequest.java56
1 files changed, 56 insertions, 0 deletions
diff --git a/STAL/src/main/java/at/gv/egiz/stal/SignRequest.java b/STAL/src/main/java/at/gv/egiz/stal/SignRequest.java
index d4212b24..37d43877 100644
--- a/STAL/src/main/java/at/gv/egiz/stal/SignRequest.java
+++ b/STAL/src/main/java/at/gv/egiz/stal/SignRequest.java
@@ -59,6 +59,8 @@ import javax.xml.bind.annotation.XmlValue;
* </element>
* <element name="SignatureMethod" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="DigestMethod" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
+ * <element name="displayName" type="{http://www.w3.org/2001/XMLSchema}string minOccurs="0">
+ * <element name="mimeType" type="{http://www.w3.org/2001/XMLSchema}string minOccurs="0"/>
* <element name="ExcludedByteRange" minOccurs="0">
* <complexType>
* <complexContent>
@@ -83,6 +85,7 @@ import javax.xml.bind.annotation.XmlValue;
"signedInfo",
"signatureMethod",
"digestMethod",
+ "mimeType",
"excludedByteRange"
})
public class SignRequest
@@ -96,6 +99,10 @@ public class SignRequest
protected String signatureMethod;
@XmlElement(name = "DigestMethod")
protected String digestMethod;
+ @XmlElement(name = "displayName")
+ protected String displayName;
+ @XmlElement(name = "mimeType")
+ protected String mimeType;
@XmlElement(name = "ExcludedByteRange")
protected SignRequest.ExcludedByteRange excludedByteRange;
@XmlTransient
@@ -194,6 +201,55 @@ public class SignRequest
public void setDigestMethod(String value) {
this.digestMethod = value;
}
+
+ /**
+ * Sets the value of the displayName property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setDisplayName(String value) {
+ this.displayName = value;
+ }
+
+ /**
+ * Gets the value of the displayName property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getDisplayName() {
+ return displayName;
+ }
+
+ /**
+ * Gets the value of the mimeType property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getMimeType() {
+ return mimeType;
+ }
+
+
+ /**
+ * Sets the value of the mimeType property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setMimeType(String value) {
+ this.mimeType = value;
+ }
/**
* Gets the value of the excludedByteRange property.