summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/zuserech
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/zuserech')
-rw-r--r--src/main/java/at/gv/util/xsd/zuserech/ClearingRequestType.java385
-rw-r--r--src/main/java/at/gv/util/xsd/zuserech/ClearingResponseType.java265
-rw-r--r--src/main/java/at/gv/util/xsd/zuserech/ErrorType.java93
-rw-r--r--src/main/java/at/gv/util/xsd/zuserech/ObjectFactory.java159
-rw-r--r--src/main/java/at/gv/util/xsd/zuserech/ValidateTokenRequest.java201
-rw-r--r--src/main/java/at/gv/util/xsd/zuserech/ValidateTokenResponse.java237
-rw-r--r--src/main/java/at/gv/util/xsd/zuserech/X509IssuerSerialType.java82
-rw-r--r--src/main/java/at/gv/util/xsd/zuserech/package-info.java2
8 files changed, 1424 insertions, 0 deletions
diff --git a/src/main/java/at/gv/util/xsd/zuserech/ClearingRequestType.java b/src/main/java/at/gv/util/xsd/zuserech/ClearingRequestType.java
new file mode 100644
index 0000000..fe0cfa8
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/zuserech/ClearingRequestType.java
@@ -0,0 +1,385 @@
+
+package at.gv.util.xsd.zuserech;
+
+import java.math.BigDecimal;
+import java.math.BigInteger;
+import java.util.ArrayList;
+import java.util.List;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+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 ClearingRequestType complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType name="ClearingRequestType">
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="ClearingEntry" maxOccurs="unbounded">
+ * &lt;complexType>
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="X509IssuerSerial" type="{http://reference.e-government.gv.at/namespaces/zustellung/rech}X509IssuerSerialType"/>
+ * &lt;element name="Token" type="{http://www.w3.org/2001/XMLSchema}token"/>
+ * &lt;element name="DeliveryQuality" type="{http://www.w3.org/2001/XMLSchema}token"/>
+ * &lt;element name="PaperNotification" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ * &lt;element name="Private" minOccurs="0">
+ * &lt;complexType>
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="Price" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * &lt;/element>
+ * &lt;/sequence>
+ * &lt;attribute name="ID" use="required" type="{http://www.w3.org/2001/XMLSchema}token" />
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * &lt;/element>
+ * &lt;/sequence>
+ * &lt;attribute name="version" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" />
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "ClearingRequestType", propOrder = {
+ "clearingEntry"
+})
+public class ClearingRequestType {
+
+ @XmlElement(name = "ClearingEntry", required = true)
+ protected List<ClearingRequestType.ClearingEntry> clearingEntry;
+ @XmlAttribute
+ @XmlSchemaType(name = "positiveInteger")
+ protected BigInteger version;
+
+ /**
+ * Gets the value of the clearingEntry property.
+ *
+ * <p>
+ * This accessor method returns a reference to the live list,
+ * not a snapshot. Therefore any modification you make to the
+ * returned list will be present inside the JAXB object.
+ * This is why there is not a <CODE>set</CODE> method for the clearingEntry property.
+ *
+ * <p>
+ * For example, to add a new item, do as follows:
+ * <pre>
+ * getClearingEntry().add(newItem);
+ * </pre>
+ *
+ *
+ * <p>
+ * Objects of the following type(s) are allowed in the list
+ * {@link ClearingRequestType.ClearingEntry }
+ *
+ *
+ */
+ public List<ClearingRequestType.ClearingEntry> getClearingEntry() {
+ if (clearingEntry == null) {
+ clearingEntry = new ArrayList<ClearingRequestType.ClearingEntry>();
+ }
+ return this.clearingEntry;
+ }
+
+ /**
+ * Gets the value of the version property.
+ *
+ * @return
+ * possible object is
+ * {@link BigInteger }
+ *
+ */
+ public BigInteger getVersion() {
+ return version;
+ }
+
+ /**
+ * Sets the value of the version property.
+ *
+ * @param value
+ * allowed object is
+ * {@link BigInteger }
+ *
+ */
+ public void setVersion(BigInteger value) {
+ this.version = value;
+ }
+
+
+ /**
+ * <p>Java class for anonymous complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType>
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="X509IssuerSerial" type="{http://reference.e-government.gv.at/namespaces/zustellung/rech}X509IssuerSerialType"/>
+ * &lt;element name="Token" type="{http://www.w3.org/2001/XMLSchema}token"/>
+ * &lt;element name="DeliveryQuality" type="{http://www.w3.org/2001/XMLSchema}token"/>
+ * &lt;element name="PaperNotification" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
+ * &lt;element name="Private" minOccurs="0">
+ * &lt;complexType>
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="Price" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * &lt;/element>
+ * &lt;/sequence>
+ * &lt;attribute name="ID" use="required" type="{http://www.w3.org/2001/XMLSchema}token" />
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+ @XmlAccessorType(XmlAccessType.FIELD)
+ @XmlType(name = "", propOrder = {
+ "x509IssuerSerial",
+ "token",
+ "deliveryQuality",
+ "paperNotification",
+ "_private"
+ })
+ public static class ClearingEntry {
+
+ @XmlElement(name = "X509IssuerSerial", required = true)
+ protected X509IssuerSerialType x509IssuerSerial;
+ @XmlElement(name = "Token", required = true)
+ @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+ @XmlSchemaType(name = "token")
+ protected String token;
+ @XmlElement(name = "DeliveryQuality", required = true)
+ @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+ @XmlSchemaType(name = "token")
+ protected String deliveryQuality;
+ @XmlElement(name = "PaperNotification")
+ protected boolean paperNotification;
+ @XmlElement(name = "Private")
+ protected ClearingRequestType.ClearingEntry.Private _private;
+ @XmlAttribute(name = "ID", required = true)
+ @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+ @XmlSchemaType(name = "token")
+ protected String id;
+
+ /**
+ * Gets the value of the x509IssuerSerial property.
+ *
+ * @return
+ * possible object is
+ * {@link X509IssuerSerialType }
+ *
+ */
+ public X509IssuerSerialType getX509IssuerSerial() {
+ return x509IssuerSerial;
+ }
+
+ /**
+ * Sets the value of the x509IssuerSerial property.
+ *
+ * @param value
+ * allowed object is
+ * {@link X509IssuerSerialType }
+ *
+ */
+ public void setX509IssuerSerial(X509IssuerSerialType value) {
+ this.x509IssuerSerial = value;
+ }
+
+ /**
+ * Gets the value of the token property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getToken() {
+ return token;
+ }
+
+ /**
+ * Sets the value of the token property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setToken(String value) {
+ this.token = value;
+ }
+
+ /**
+ * Gets the value of the deliveryQuality property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getDeliveryQuality() {
+ return deliveryQuality;
+ }
+
+ /**
+ * Sets the value of the deliveryQuality property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setDeliveryQuality(String value) {
+ this.deliveryQuality = value;
+ }
+
+ /**
+ * Gets the value of the paperNotification property.
+ *
+ */
+ public boolean isPaperNotification() {
+ return paperNotification;
+ }
+
+ /**
+ * Sets the value of the paperNotification property.
+ *
+ */
+ public void setPaperNotification(boolean value) {
+ this.paperNotification = value;
+ }
+
+ /**
+ * Gets the value of the private property.
+ *
+ * @return
+ * possible object is
+ * {@link ClearingRequestType.ClearingEntry.Private }
+ *
+ */
+ public ClearingRequestType.ClearingEntry.Private getPrivate() {
+ return _private;
+ }
+
+ /**
+ * Sets the value of the private property.
+ *
+ * @param value
+ * allowed object is
+ * {@link ClearingRequestType.ClearingEntry.Private }
+ *
+ */
+ public void setPrivate(ClearingRequestType.ClearingEntry.Private value) {
+ this._private = value;
+ }
+
+ /**
+ * Gets the value of the id property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getID() {
+ return id;
+ }
+
+ /**
+ * Sets the value of the id property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setID(String value) {
+ this.id = value;
+ }
+
+
+ /**
+ * <p>Java class for anonymous complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType>
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="Price" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+ @XmlAccessorType(XmlAccessType.FIELD)
+ @XmlType(name = "", propOrder = {
+ "price"
+ })
+ public static class Private {
+
+ @XmlElement(name = "Price", required = true)
+ protected BigDecimal price;
+
+ /**
+ * Gets the value of the price property.
+ *
+ * @return
+ * possible object is
+ * {@link BigDecimal }
+ *
+ */
+ public BigDecimal getPrice() {
+ return price;
+ }
+
+ /**
+ * Sets the value of the price property.
+ *
+ * @param value
+ * allowed object is
+ * {@link BigDecimal }
+ *
+ */
+ public void setPrice(BigDecimal value) {
+ this.price = value;
+ }
+
+ }
+
+ }
+
+}
diff --git a/src/main/java/at/gv/util/xsd/zuserech/ClearingResponseType.java b/src/main/java/at/gv/util/xsd/zuserech/ClearingResponseType.java
new file mode 100644
index 0000000..ac5c7f5
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/zuserech/ClearingResponseType.java
@@ -0,0 +1,265 @@
+
+package at.gv.util.xsd.zuserech;
+
+import java.util.ArrayList;
+import java.util.List;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+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 ClearingResponseType complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType name="ClearingResponseType">
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;choice>
+ * &lt;element name="Error" type="{http://reference.e-government.gv.at/namespaces/zustellung/rech}ErrorType"/>
+ * &lt;sequence>
+ * &lt;element name="ClearingEntry" maxOccurs="unbounded">
+ * &lt;complexType>
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;choice>
+ * &lt;element name="Success">
+ * &lt;complexType>
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * &lt;/element>
+ * &lt;element name="Error" type="{http://reference.e-government.gv.at/namespaces/zustellung/rech}ErrorType"/>
+ * &lt;/choice>
+ * &lt;attribute name="ID" use="required" type="{http://www.w3.org/2001/XMLSchema}token" />
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * &lt;/element>
+ * &lt;/sequence>
+ * &lt;/choice>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "ClearingResponseType", propOrder = {
+ "error",
+ "clearingEntry"
+})
+public class ClearingResponseType {
+
+ @XmlElement(name = "Error")
+ protected ErrorType error;
+ @XmlElement(name = "ClearingEntry")
+ protected List<ClearingResponseType.ClearingEntry> clearingEntry;
+
+ /**
+ * Gets the value of the error property.
+ *
+ * @return
+ * possible object is
+ * {@link ErrorType }
+ *
+ */
+ public ErrorType getError() {
+ return error;
+ }
+
+ /**
+ * Sets the value of the error property.
+ *
+ * @param value
+ * allowed object is
+ * {@link ErrorType }
+ *
+ */
+ public void setError(ErrorType value) {
+ this.error = value;
+ }
+
+ /**
+ * Gets the value of the clearingEntry property.
+ *
+ * <p>
+ * This accessor method returns a reference to the live list,
+ * not a snapshot. Therefore any modification you make to the
+ * returned list will be present inside the JAXB object.
+ * This is why there is not a <CODE>set</CODE> method for the clearingEntry property.
+ *
+ * <p>
+ * For example, to add a new item, do as follows:
+ * <pre>
+ * getClearingEntry().add(newItem);
+ * </pre>
+ *
+ *
+ * <p>
+ * Objects of the following type(s) are allowed in the list
+ * {@link ClearingResponseType.ClearingEntry }
+ *
+ *
+ */
+ public List<ClearingResponseType.ClearingEntry> getClearingEntry() {
+ if (clearingEntry == null) {
+ clearingEntry = new ArrayList<ClearingResponseType.ClearingEntry>();
+ }
+ return this.clearingEntry;
+ }
+
+
+ /**
+ * <p>Java class for anonymous complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType>
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;choice>
+ * &lt;element name="Success">
+ * &lt;complexType>
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * &lt;/element>
+ * &lt;element name="Error" type="{http://reference.e-government.gv.at/namespaces/zustellung/rech}ErrorType"/>
+ * &lt;/choice>
+ * &lt;attribute name="ID" use="required" type="{http://www.w3.org/2001/XMLSchema}token" />
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+ @XmlAccessorType(XmlAccessType.FIELD)
+ @XmlType(name = "", propOrder = {
+ "success",
+ "error"
+ })
+ public static class ClearingEntry {
+
+ @XmlElement(name = "Success")
+ protected ClearingResponseType.ClearingEntry.Success success;
+ @XmlElement(name = "Error")
+ protected ErrorType error;
+ @XmlAttribute(name = "ID", required = true)
+ @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+ @XmlSchemaType(name = "token")
+ protected String id;
+
+ /**
+ * Gets the value of the success property.
+ *
+ * @return
+ * possible object is
+ * {@link ClearingResponseType.ClearingEntry.Success }
+ *
+ */
+ public ClearingResponseType.ClearingEntry.Success getSuccess() {
+ return success;
+ }
+
+ /**
+ * Sets the value of the success property.
+ *
+ * @param value
+ * allowed object is
+ * {@link ClearingResponseType.ClearingEntry.Success }
+ *
+ */
+ public void setSuccess(ClearingResponseType.ClearingEntry.Success value) {
+ this.success = value;
+ }
+
+ /**
+ * Gets the value of the error property.
+ *
+ * @return
+ * possible object is
+ * {@link ErrorType }
+ *
+ */
+ public ErrorType getError() {
+ return error;
+ }
+
+ /**
+ * Sets the value of the error property.
+ *
+ * @param value
+ * allowed object is
+ * {@link ErrorType }
+ *
+ */
+ public void setError(ErrorType value) {
+ this.error = value;
+ }
+
+ /**
+ * Gets the value of the id property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getID() {
+ return id;
+ }
+
+ /**
+ * Sets the value of the id property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setID(String value) {
+ this.id = value;
+ }
+
+
+ /**
+ * <p>Java class for anonymous complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType>
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+ @XmlAccessorType(XmlAccessType.FIELD)
+ @XmlType(name = "")
+ public static class Success {
+
+
+ }
+
+ }
+
+}
diff --git a/src/main/java/at/gv/util/xsd/zuserech/ErrorType.java b/src/main/java/at/gv/util/xsd/zuserech/ErrorType.java
new file mode 100644
index 0000000..37200cc
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/zuserech/ErrorType.java
@@ -0,0 +1,93 @@
+
+package at.gv.util.xsd.zuserech;
+
+import java.math.BigInteger;
+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;
+
+
+/**
+ * <p>Java class for ErrorType complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType name="ErrorType">
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="Info" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ * &lt;element name="Code" type="{http://www.w3.org/2001/XMLSchema}positiveInteger"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "ErrorType", propOrder = {
+ "info",
+ "code"
+})
+public class ErrorType {
+
+ @XmlElement(name = "Info", required = true)
+ protected String info;
+ @XmlElement(name = "Code", required = true)
+ @XmlSchemaType(name = "positiveInteger")
+ protected BigInteger code;
+
+ /**
+ * Gets the value of the info property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getInfo() {
+ return info;
+ }
+
+ /**
+ * Sets the value of the info property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setInfo(String value) {
+ this.info = value;
+ }
+
+ /**
+ * Gets the value of the code property.
+ *
+ * @return
+ * possible object is
+ * {@link BigInteger }
+ *
+ */
+ public BigInteger getCode() {
+ return code;
+ }
+
+ /**
+ * Sets the value of the code property.
+ *
+ * @param value
+ * allowed object is
+ * {@link BigInteger }
+ *
+ */
+ public void setCode(BigInteger value) {
+ this.code = value;
+ }
+
+}
diff --git a/src/main/java/at/gv/util/xsd/zuserech/ObjectFactory.java b/src/main/java/at/gv/util/xsd/zuserech/ObjectFactory.java
new file mode 100644
index 0000000..de892ec
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/zuserech/ObjectFactory.java
@@ -0,0 +1,159 @@
+
+package at.gv.util.xsd.zuserech;
+
+import javax.xml.bind.JAXBElement;
+import javax.xml.bind.annotation.XmlElementDecl;
+import javax.xml.bind.annotation.XmlRegistry;
+import javax.xml.namespace.QName;
+
+
+/**
+ * This object contains factory methods for each
+ * Java content interface and Java element interface
+ * generated in the at.gv.util.xsd.zuserech package.
+ * <p>An ObjectFactory allows you to programatically
+ * construct new instances of the Java representation
+ * for XML content. The Java representation of XML
+ * content can consist of schema derived interfaces
+ * and classes representing the binding of schema
+ * type definitions, element declarations and model
+ * groups. Factory methods for each of these are
+ * provided in this class.
+ *
+ */
+@XmlRegistry
+public class ObjectFactory {
+
+ private final static QName _ClearingRequest_QNAME = new QName("http://reference.e-government.gv.at/namespaces/zustellung/rech", "ClearingRequest");
+ private final static QName _ClearingResponse_QNAME = new QName("http://reference.e-government.gv.at/namespaces/zustellung/rech", "ClearingResponse");
+
+ /**
+ * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.gv.util.xsd.zuserech
+ *
+ */
+ public ObjectFactory() {
+ }
+
+ /**
+ * Create an instance of {@link ClearingResponseType.ClearingEntry }
+ *
+ */
+ public ClearingResponseType.ClearingEntry createClearingResponseTypeClearingEntry() {
+ return new ClearingResponseType.ClearingEntry();
+ }
+
+ /**
+ * Create an instance of {@link ClearingResponseType.ClearingEntry.Success }
+ *
+ */
+ public ClearingResponseType.ClearingEntry.Success createClearingResponseTypeClearingEntrySuccess() {
+ return new ClearingResponseType.ClearingEntry.Success();
+ }
+
+ /**
+ * Create an instance of {@link ValidateTokenRequest.TokenEntry }
+ *
+ */
+ public ValidateTokenRequest.TokenEntry createValidateTokenRequestTokenEntry() {
+ return new ValidateTokenRequest.TokenEntry();
+ }
+
+ /**
+ * Create an instance of {@link ValidateTokenResponse.TokenEntry.Success }
+ *
+ */
+ public ValidateTokenResponse.TokenEntry.Success createValidateTokenResponseTokenEntrySuccess() {
+ return new ValidateTokenResponse.TokenEntry.Success();
+ }
+
+ /**
+ * Create an instance of {@link ValidateTokenResponse }
+ *
+ */
+ public ValidateTokenResponse createValidateTokenResponse() {
+ return new ValidateTokenResponse();
+ }
+
+ /**
+ * Create an instance of {@link ClearingRequestType.ClearingEntry.Private }
+ *
+ */
+ public ClearingRequestType.ClearingEntry.Private createClearingRequestTypeClearingEntryPrivate() {
+ return new ClearingRequestType.ClearingEntry.Private();
+ }
+
+ /**
+ * Create an instance of {@link ValidateTokenResponse.TokenEntry }
+ *
+ */
+ public ValidateTokenResponse.TokenEntry createValidateTokenResponseTokenEntry() {
+ return new ValidateTokenResponse.TokenEntry();
+ }
+
+ /**
+ * Create an instance of {@link X509IssuerSerialType }
+ *
+ */
+ public X509IssuerSerialType createX509IssuerSerialType() {
+ return new X509IssuerSerialType();
+ }
+
+ /**
+ * Create an instance of {@link ClearingRequestType.ClearingEntry }
+ *
+ */
+ public ClearingRequestType.ClearingEntry createClearingRequestTypeClearingEntry() {
+ return new ClearingRequestType.ClearingEntry();
+ }
+
+ /**
+ * Create an instance of {@link ClearingResponseType }
+ *
+ */
+ public ClearingResponseType createClearingResponseType() {
+ return new ClearingResponseType();
+ }
+
+ /**
+ * Create an instance of {@link ErrorType }
+ *
+ */
+ public ErrorType createErrorType() {
+ return new ErrorType();
+ }
+
+ /**
+ * Create an instance of {@link ValidateTokenRequest }
+ *
+ */
+ public ValidateTokenRequest createValidateTokenRequest() {
+ return new ValidateTokenRequest();
+ }
+
+ /**
+ * Create an instance of {@link ClearingRequestType }
+ *
+ */
+ public ClearingRequestType createClearingRequestType() {
+ return new ClearingRequestType();
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link ClearingRequestType }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespaces/zustellung/rech", name = "ClearingRequest")
+ public JAXBElement<ClearingRequestType> createClearingRequest(ClearingRequestType value) {
+ return new JAXBElement<ClearingRequestType>(_ClearingRequest_QNAME, ClearingRequestType.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link ClearingResponseType }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespaces/zustellung/rech", name = "ClearingResponse")
+ public JAXBElement<ClearingResponseType> createClearingResponse(ClearingResponseType value) {
+ return new JAXBElement<ClearingResponseType>(_ClearingResponse_QNAME, ClearingResponseType.class, null, value);
+ }
+
+}
diff --git a/src/main/java/at/gv/util/xsd/zuserech/ValidateTokenRequest.java b/src/main/java/at/gv/util/xsd/zuserech/ValidateTokenRequest.java
new file mode 100644
index 0000000..6735720
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/zuserech/ValidateTokenRequest.java
@@ -0,0 +1,201 @@
+
+package at.gv.util.xsd.zuserech;
+
+import java.util.ArrayList;
+import java.util.List;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlRootElement;
+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 anonymous complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType>
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="TokenEntry" maxOccurs="unbounded">
+ * &lt;complexType>
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="X509IssuerSerial" type="{http://reference.e-government.gv.at/namespaces/zustellung/rech}X509IssuerSerialType"/>
+ * &lt;element name="Token" type="{http://www.w3.org/2001/XMLSchema}token"/>
+ * &lt;/sequence>
+ * &lt;attribute name="ID" use="required" type="{http://www.w3.org/2001/XMLSchema}token" />
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * &lt;/element>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "", propOrder = {
+ "tokenEntry"
+})
+@XmlRootElement(name = "ValidateTokenRequest")
+public class ValidateTokenRequest {
+
+ @XmlElement(name = "TokenEntry", required = true)
+ protected List<ValidateTokenRequest.TokenEntry> tokenEntry;
+
+ /**
+ * Gets the value of the tokenEntry property.
+ *
+ * <p>
+ * This accessor method returns a reference to the live list,
+ * not a snapshot. Therefore any modification you make to the
+ * returned list will be present inside the JAXB object.
+ * This is why there is not a <CODE>set</CODE> method for the tokenEntry property.
+ *
+ * <p>
+ * For example, to add a new item, do as follows:
+ * <pre>
+ * getTokenEntry().add(newItem);
+ * </pre>
+ *
+ *
+ * <p>
+ * Objects of the following type(s) are allowed in the list
+ * {@link ValidateTokenRequest.TokenEntry }
+ *
+ *
+ */
+ public List<ValidateTokenRequest.TokenEntry> getTokenEntry() {
+ if (tokenEntry == null) {
+ tokenEntry = new ArrayList<ValidateTokenRequest.TokenEntry>();
+ }
+ return this.tokenEntry;
+ }
+
+
+ /**
+ * <p>Java class for anonymous complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType>
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="X509IssuerSerial" type="{http://reference.e-government.gv.at/namespaces/zustellung/rech}X509IssuerSerialType"/>
+ * &lt;element name="Token" type="{http://www.w3.org/2001/XMLSchema}token"/>
+ * &lt;/sequence>
+ * &lt;attribute name="ID" use="required" type="{http://www.w3.org/2001/XMLSchema}token" />
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+ @XmlAccessorType(XmlAccessType.FIELD)
+ @XmlType(name = "", propOrder = {
+ "x509IssuerSerial",
+ "token"
+ })
+ public static class TokenEntry {
+
+ @XmlElement(name = "X509IssuerSerial", required = true)
+ protected X509IssuerSerialType x509IssuerSerial;
+ @XmlElement(name = "Token", required = true)
+ @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+ @XmlSchemaType(name = "token")
+ protected String token;
+ @XmlAttribute(name = "ID", required = true)
+ @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+ @XmlSchemaType(name = "token")
+ protected String id;
+
+ /**
+ * Gets the value of the x509IssuerSerial property.
+ *
+ * @return
+ * possible object is
+ * {@link X509IssuerSerialType }
+ *
+ */
+ public X509IssuerSerialType getX509IssuerSerial() {
+ return x509IssuerSerial;
+ }
+
+ /**
+ * Sets the value of the x509IssuerSerial property.
+ *
+ * @param value
+ * allowed object is
+ * {@link X509IssuerSerialType }
+ *
+ */
+ public void setX509IssuerSerial(X509IssuerSerialType value) {
+ this.x509IssuerSerial = value;
+ }
+
+ /**
+ * Gets the value of the token property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getToken() {
+ return token;
+ }
+
+ /**
+ * Sets the value of the token property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setToken(String value) {
+ this.token = value;
+ }
+
+ /**
+ * Gets the value of the id property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getID() {
+ return id;
+ }
+
+ /**
+ * Sets the value of the id property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setID(String value) {
+ this.id = value;
+ }
+
+ }
+
+}
diff --git a/src/main/java/at/gv/util/xsd/zuserech/ValidateTokenResponse.java b/src/main/java/at/gv/util/xsd/zuserech/ValidateTokenResponse.java
new file mode 100644
index 0000000..3d818a6
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/zuserech/ValidateTokenResponse.java
@@ -0,0 +1,237 @@
+
+package at.gv.util.xsd.zuserech;
+
+import java.util.ArrayList;
+import java.util.List;
+import javax.xml.bind.annotation.XmlAccessType;
+import javax.xml.bind.annotation.XmlAccessorType;
+import javax.xml.bind.annotation.XmlAttribute;
+import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlRootElement;
+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 anonymous complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType>
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="TokenEntry" maxOccurs="unbounded">
+ * &lt;complexType>
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;choice>
+ * &lt;element name="Success">
+ * &lt;complexType>
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * &lt;/element>
+ * &lt;element name="Error" type="{http://reference.e-government.gv.at/namespaces/zustellung/rech}ErrorType"/>
+ * &lt;/choice>
+ * &lt;attribute name="ID" use="required" type="{http://www.w3.org/2001/XMLSchema}token" />
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * &lt;/element>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "", propOrder = {
+ "tokenEntry"
+})
+@XmlRootElement(name = "ValidateTokenResponse")
+public class ValidateTokenResponse {
+
+ @XmlElement(name = "TokenEntry", required = true)
+ protected List<ValidateTokenResponse.TokenEntry> tokenEntry;
+
+ /**
+ * Gets the value of the tokenEntry property.
+ *
+ * <p>
+ * This accessor method returns a reference to the live list,
+ * not a snapshot. Therefore any modification you make to the
+ * returned list will be present inside the JAXB object.
+ * This is why there is not a <CODE>set</CODE> method for the tokenEntry property.
+ *
+ * <p>
+ * For example, to add a new item, do as follows:
+ * <pre>
+ * getTokenEntry().add(newItem);
+ * </pre>
+ *
+ *
+ * <p>
+ * Objects of the following type(s) are allowed in the list
+ * {@link ValidateTokenResponse.TokenEntry }
+ *
+ *
+ */
+ public List<ValidateTokenResponse.TokenEntry> getTokenEntry() {
+ if (tokenEntry == null) {
+ tokenEntry = new ArrayList<ValidateTokenResponse.TokenEntry>();
+ }
+ return this.tokenEntry;
+ }
+
+
+ /**
+ * <p>Java class for anonymous complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType>
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;choice>
+ * &lt;element name="Success">
+ * &lt;complexType>
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * &lt;/element>
+ * &lt;element name="Error" type="{http://reference.e-government.gv.at/namespaces/zustellung/rech}ErrorType"/>
+ * &lt;/choice>
+ * &lt;attribute name="ID" use="required" type="{http://www.w3.org/2001/XMLSchema}token" />
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+ @XmlAccessorType(XmlAccessType.FIELD)
+ @XmlType(name = "", propOrder = {
+ "success",
+ "error"
+ })
+ public static class TokenEntry {
+
+ @XmlElement(name = "Success")
+ protected ValidateTokenResponse.TokenEntry.Success success;
+ @XmlElement(name = "Error")
+ protected ErrorType error;
+ @XmlAttribute(name = "ID", required = true)
+ @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
+ @XmlSchemaType(name = "token")
+ protected String id;
+
+ /**
+ * Gets the value of the success property.
+ *
+ * @return
+ * possible object is
+ * {@link ValidateTokenResponse.TokenEntry.Success }
+ *
+ */
+ public ValidateTokenResponse.TokenEntry.Success getSuccess() {
+ return success;
+ }
+
+ /**
+ * Sets the value of the success property.
+ *
+ * @param value
+ * allowed object is
+ * {@link ValidateTokenResponse.TokenEntry.Success }
+ *
+ */
+ public void setSuccess(ValidateTokenResponse.TokenEntry.Success value) {
+ this.success = value;
+ }
+
+ /**
+ * Gets the value of the error property.
+ *
+ * @return
+ * possible object is
+ * {@link ErrorType }
+ *
+ */
+ public ErrorType getError() {
+ return error;
+ }
+
+ /**
+ * Sets the value of the error property.
+ *
+ * @param value
+ * allowed object is
+ * {@link ErrorType }
+ *
+ */
+ public void setError(ErrorType value) {
+ this.error = value;
+ }
+
+ /**
+ * Gets the value of the id property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getID() {
+ return id;
+ }
+
+ /**
+ * Sets the value of the id property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setID(String value) {
+ this.id = value;
+ }
+
+
+ /**
+ * <p>Java class for anonymous complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType>
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+ @XmlAccessorType(XmlAccessType.FIELD)
+ @XmlType(name = "")
+ public static class Success {
+
+
+ }
+
+ }
+
+}
diff --git a/src/main/java/at/gv/util/xsd/zuserech/X509IssuerSerialType.java b/src/main/java/at/gv/util/xsd/zuserech/X509IssuerSerialType.java
new file mode 100644
index 0000000..6c27500
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/zuserech/X509IssuerSerialType.java
@@ -0,0 +1,82 @@
+
+package at.gv.util.xsd.zuserech;
+
+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 class for X509IssuerSerialType complex type.
+ *
+ * <p>The following schema fragment specifies the expected content contained within this class.
+ *
+ * <pre>
+ * &lt;complexType name="X509IssuerSerialType">
+ * &lt;complexContent>
+ * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
+ * &lt;sequence>
+ * &lt;element name="X509IssuerName" type="{http://www.w3.org/2001/XMLSchema}string"/>
+ * &lt;element name="X509SerialNumber" type="{http://www.w3.org/2001/XMLSchema}long"/>
+ * &lt;/sequence>
+ * &lt;/restriction>
+ * &lt;/complexContent>
+ * &lt;/complexType>
+ * </pre>
+ *
+ *
+ */
+@XmlAccessorType(XmlAccessType.FIELD)
+@XmlType(name = "X509IssuerSerialType", propOrder = {
+ "x509IssuerName",
+ "x509SerialNumber"
+})
+public class X509IssuerSerialType {
+
+ @XmlElement(name = "X509IssuerName", required = true)
+ protected String x509IssuerName;
+ @XmlElement(name = "X509SerialNumber")
+ protected long x509SerialNumber;
+
+ /**
+ * Gets the value of the x509IssuerName property.
+ *
+ * @return
+ * possible object is
+ * {@link String }
+ *
+ */
+ public String getX509IssuerName() {
+ return x509IssuerName;
+ }
+
+ /**
+ * Sets the value of the x509IssuerName property.
+ *
+ * @param value
+ * allowed object is
+ * {@link String }
+ *
+ */
+ public void setX509IssuerName(String value) {
+ this.x509IssuerName = value;
+ }
+
+ /**
+ * Gets the value of the x509SerialNumber property.
+ *
+ */
+ public long getX509SerialNumber() {
+ return x509SerialNumber;
+ }
+
+ /**
+ * Sets the value of the x509SerialNumber property.
+ *
+ */
+ public void setX509SerialNumber(long value) {
+ this.x509SerialNumber = value;
+ }
+
+}
diff --git a/src/main/java/at/gv/util/xsd/zuserech/package-info.java b/src/main/java/at/gv/util/xsd/zuserech/package-info.java
new file mode 100644
index 0000000..708e3c0
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/zuserech/package-info.java
@@ -0,0 +1,2 @@
+@javax.xml.bind.annotation.XmlSchema(namespace = "http://reference.e-government.gv.at/namespaces/zustellung/rech", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
+package at.gv.util.xsd.zuserech;