summaryrefslogtreecommitdiff
path: root/src/main/java/at/gv/util/xsd/mis_v2/ObjectFactory.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/gv/util/xsd/mis_v2/ObjectFactory.java')
-rw-r--r--src/main/java/at/gv/util/xsd/mis_v2/ObjectFactory.java105
1 files changed, 105 insertions, 0 deletions
diff --git a/src/main/java/at/gv/util/xsd/mis_v2/ObjectFactory.java b/src/main/java/at/gv/util/xsd/mis_v2/ObjectFactory.java
new file mode 100644
index 0000000..c376013
--- /dev/null
+++ b/src/main/java/at/gv/util/xsd/mis_v2/ObjectFactory.java
@@ -0,0 +1,105 @@
+
+package at.gv.util.xsd.mis_v2;
+
+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.mis_v2 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 _GetMandatesRequest_QNAME = new QName("http://reference.e-government.gv.at/namespace/mandates/mis/2.0/xsd", "GetMandatesRequest");
+ private final static QName _GetMandatesResponse_QNAME = new QName("http://reference.e-government.gv.at/namespace/mandates/mis/2.0/xsd", "GetMandatesResponse");
+ private final static QName _GetMandatesError_QNAME = new QName("http://reference.e-government.gv.at/namespace/mandates/mis/2.0/xsd", "GetMandatesError");
+
+ /**
+ * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.gv.util.xsd.mis_v2
+ *
+ */
+ public ObjectFactory() {
+ }
+
+ /**
+ * Create an instance of {@link GetMandatesRequestType }
+ *
+ */
+ public GetMandatesRequestType createGetMandatesRequestType() {
+ return new GetMandatesRequestType();
+ }
+
+ /**
+ * Create an instance of {@link GetMandatesResponseType }
+ *
+ */
+ public GetMandatesResponseType createGetMandatesResponseType() {
+ return new GetMandatesResponseType();
+ }
+
+ /**
+ * Create an instance of {@link GetMandatesErrorType }
+ *
+ */
+ public GetMandatesErrorType createGetMandatesErrorType() {
+ return new GetMandatesErrorType();
+ }
+
+ /**
+ * Create an instance of {@link PersonInformationType }
+ *
+ */
+ public PersonInformationType createPersonInformationType() {
+ return new PersonInformationType();
+ }
+
+ /**
+ * Create an instance of {@link MisMandateType }
+ *
+ */
+ public MisMandateType createMisMandateType() {
+ return new MisMandateType();
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link GetMandatesRequestType }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/mandates/mis/2.0/xsd", name = "GetMandatesRequest")
+ public JAXBElement<GetMandatesRequestType> createGetMandatesRequest(GetMandatesRequestType value) {
+ return new JAXBElement<GetMandatesRequestType>(_GetMandatesRequest_QNAME, GetMandatesRequestType.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link GetMandatesResponseType }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/mandates/mis/2.0/xsd", name = "GetMandatesResponse")
+ public JAXBElement<GetMandatesResponseType> createGetMandatesResponse(GetMandatesResponseType value) {
+ return new JAXBElement<GetMandatesResponseType>(_GetMandatesResponse_QNAME, GetMandatesResponseType.class, null, value);
+ }
+
+ /**
+ * Create an instance of {@link JAXBElement }{@code <}{@link GetMandatesErrorType }{@code >}}
+ *
+ */
+ @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/mandates/mis/2.0/xsd", name = "GetMandatesError")
+ public JAXBElement<GetMandatesErrorType> createGetMandatesError(GetMandatesErrorType value) {
+ return new JAXBElement<GetMandatesErrorType>(_GetMandatesError_QNAME, GetMandatesErrorType.class, null, value);
+ }
+
+}