summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/w3c_xmlenc/CipherDataType.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/w3c_xmlenc/CipherDataType.java')
-rw-r--r--src/main/java/at/gv/util/xsd/w3c_xmlenc/CipherDataType.java88
1 files changed, 88 insertions, 0 deletions
diff --git a/src/main/java/at/gv/util/xsd/w3c_xmlenc/CipherDataType.java b/src/main/java/at/gv/util/xsd/w3c_xmlenc/CipherDataType.java
new file mode 100644
index 0000000..10bada7
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/w3c_xmlenc/CipherDataType.java
@@ -0,0 +1,88 @@
+
+package at.gv.util.xsd.w3c_xmlenc;
+
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlType;
+
+
+/**
+ * <p>Java-Klasse für CipherDataType complex type.
+ *
+ * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
+ *
+ * <pre>
+ * &lt;complexType name="CipherDataType"&gt;
+ * &lt;complexContent&gt;
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
+ * &lt;choice&gt;
+ * &lt;element name="CipherValue" type="{http://www.w3.org/2001/XMLSchema}base64Binary"/&gt;
+ * &lt;element ref="{http://www.w3.org/2001/04/xmlenc#}CipherReference"/&gt;
+ * &lt;/choice&gt;
+ * &lt;/restriction&gt;
+ * &lt;/complexContent&gt;
+ * &lt;/complexType&gt;
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "CipherDataType", propOrder = {
+ "cipherValue",
+ "cipherReference"
+})
+public class CipherDataType {
+
+ @XmlElement(name = "CipherValue")
+ protected byte[] cipherValue;
+ @XmlElement(name = "CipherReference")
+ protected CipherReferenceType cipherReference;
+
+ /**
+ * Ruft den Wert der cipherValue-Eigenschaft ab.
+ *
+ * @return
+ * possible object is
+ * byte[]
+ */
+ public byte[] getCipherValue() {
+ return cipherValue;
+ }
+
+ /**
+ * Legt den Wert der cipherValue-Eigenschaft fest.
+ *
+ * @param value
+ * allowed object is
+ * byte[]
+ */
+ public void setCipherValue(byte[] value) {
+ this.cipherValue = value;
+ }
+
+ /**
+ * Ruft den Wert der cipherReference-Eigenschaft ab.
+ *
+ * @return
+ * possible object is
+ * {@link CipherReferenceType }
+ *
+ */
+ public CipherReferenceType getCipherReference() {
+ return cipherReference;
+ }
+
+ /**
+ * Legt den Wert der cipherReference-Eigenschaft fest.
+ *
+ * @param value
+ * allowed object is
+ * {@link CipherReferenceType }
+ *
+ */
+ public void setCipherReference(CipherReferenceType value) {
+ this.cipherReference = value;
+ }
+
+}