From defceef8afef538555c13d33e344a89a828a3d97 Mon Sep 17 00:00:00 2001 From: Thomas Lenz Date: Fri, 20 Dec 2013 12:35:28 +0100 Subject: inital --- .../java/at/gv/util/xsd/omsp/ObjectFactory.java | 107 +++++++++++++++++++++ 1 file changed, 107 insertions(+) create mode 100644 src/main/java/at/gv/util/xsd/omsp/ObjectFactory.java (limited to 'src/main/java/at/gv/util/xsd/omsp/ObjectFactory.java') diff --git a/src/main/java/at/gv/util/xsd/omsp/ObjectFactory.java b/src/main/java/at/gv/util/xsd/omsp/ObjectFactory.java new file mode 100644 index 0000000..af73592 --- /dev/null +++ b/src/main/java/at/gv/util/xsd/omsp/ObjectFactory.java @@ -0,0 +1,107 @@ +// +// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 +// See http://java.sun.com/xml/jaxb +// Any modifications to this file will be lost upon recompilation of the source schema. +// Generated on: 2011.03.04 at 04:57:33 PM MEZ +// + + +package at.gv.util.xsd.omsp; + +import javax.xml.bind.JAXBElement; +import javax.xml.bind.annotation.XmlElementDecl; +import javax.xml.bind.annotation.XmlRegistry; +import javax.xml.datatype.XMLGregorianCalendar; +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.omsp package. + *

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 _Status_QNAME = new QName("http://reference.e-government.gv.at/namespace/moavv/20070102#", "Status"); + private final static QName _RevocationDate_QNAME = new QName("http://reference.e-government.gv.at/namespace/moavv/20070102#", "RevocationDate"); + private final static QName _StatusDate_QNAME = new QName("http://reference.e-government.gv.at/namespace/moavv/20070102#", "StatusDate"); + private final static QName _MandateID_QNAME = new QName("http://reference.e-government.gv.at/namespace/moavv/20070102#", "MandateID"); + + /** + * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.gv.util.xsd.omsp + * + */ + public ObjectFactory() { + } + + /** + * Create an instance of {@link SimpleResponse } + * + */ + public SimpleResponse createSimpleResponse() { + return new SimpleResponse(); + } + + /** + * Create an instance of {@link StatusResponse } + * + */ + public StatusResponse createStatusResponse() { + return new StatusResponse(); + } + + /** + * Create an instance of {@link SignedStatusResponse } + * + */ + public SignedStatusResponse createSignedStatusResponse() { + return new SignedStatusResponse(); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/moavv/20070102#", name = "Status") + public JAXBElement createStatus(String value) { + return new JAXBElement(_Status_QNAME, String.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link XMLGregorianCalendar }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/moavv/20070102#", name = "RevocationDate") + public JAXBElement createRevocationDate(XMLGregorianCalendar value) { + return new JAXBElement(_RevocationDate_QNAME, XMLGregorianCalendar.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link XMLGregorianCalendar }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/moavv/20070102#", name = "StatusDate") + public JAXBElement createStatusDate(XMLGregorianCalendar value) { + return new JAXBElement(_StatusDate_QNAME, XMLGregorianCalendar.class, null, value); + } + + /** + * Create an instance of {@link JAXBElement }{@code <}{@link String }{@code >}} + * + */ + @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/moavv/20070102#", name = "MandateID") + public JAXBElement createMandateID(String value) { + return new JAXBElement(_MandateID_QNAME, String.class, null, value); + } + +} -- cgit v1.2.3