summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/zkopf/ZuseType.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/zkopf/ZuseType.java')
-rw-r--r--src/main/java/at/gv/util/xsd/zkopf/ZuseType.java148
1 files changed, 148 insertions, 0 deletions
diff --git a/src/main/java/at/gv/util/xsd/zkopf/ZuseType.java b/src/main/java/at/gv/util/xsd/zkopf/ZuseType.java
new file mode 100644
index 0000000..a6cc179
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/zkopf/ZuseType.java
@@ -0,0 +1,148 @@
+
+package at.gv.util.xsd.zkopf;
+
+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.XmlType;
+import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
+import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
+
+
+/**
+ * <p>Java class for zuseType complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType name="zuseType">
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="edID" type="{http://www.w3.org/2001/XMLSchema}token" minOccurs="0"/>
+ * &lt;element name="ZUSEUrlID" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ * &lt;element name="MIMETypes" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ * &lt;element name="X509" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "zuseType", propOrder = {
+ "edID",
+ "zuseUrlID",
+ "mimeTypes",
+ "x509"
+})
+public class ZuseType {
+
+ @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+ @XmlSchemaType(name = "token")
+ protected String edID;
+ @XmlElement(name = "ZUSEUrlID", required = true)
+ protected String zuseUrlID;
+ @XmlElement(name = "MIMETypes", required = true)
+ protected String mimeTypes;
+ @XmlElement(name = "X509")
+ protected byte[] x509;
+
+ /**
+ * Gets the value of the edID property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getEdID() {
+ return edID;
+ }
+
+ /**
+ * Sets the value of the edID property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setEdID(String value) {
+ this.edID = value;
+ }
+
+ /**
+ * Gets the value of the zuseUrlID property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getZUSEUrlID() {
+ return zuseUrlID;
+ }
+
+ /**
+ * Sets the value of the zuseUrlID property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setZUSEUrlID(String value) {
+ this.zuseUrlID = value;
+ }
+
+ /**
+ * Gets the value of the mimeTypes property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getMIMETypes() {
+ return mimeTypes;
+ }
+
+ /**
+ * Sets the value of the mimeTypes property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setMIMETypes(String value) {
+ this.mimeTypes = value;
+ }
+
+ /**
+ * Gets the value of the x509 property.
+ *
+ * @return
+ * possible object is
+ * byte[]
+ */
+ public byte[] getX509() {
+ return x509;
+ }
+
+ /**
+ * Sets the value of the x509 property.
+ *
+ * @param value
+ * allowed object is
+ * byte[]
+ */
+ public void setX509(byte[] value) {
+ this.x509 = ((byte[]) value);
+ }
+
+}