/******************************************************************************* * Copyright 2014 Federal Chancellery Austria * MOA-ID has been developed in a cooperation between BRZ, the Federal * Chancellery Austria - ICT staff unit, and Graz University of Technology. * * Licensed under the EUPL, Version 1.1 or - as soon they will be approved by * the European Commission - subsequent versions of the EUPL (the "Licence"); * You may not use this work except in compliance with the Licence. * You may obtain a copy of the Licence at: * http://www.osor.eu/eupl/ * * Unless required by applicable law or agreed to in writing, software * distributed under the Licence is distributed on an "AS IS" basis, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the Licence for the specific language governing permissions and * limitations under the Licence. * * This product combines work with different licenses. See the "NOTICE" text * file for details on the various modules and licenses. * The "NOTICE" text file is part of the distribution. Any derivative works * that you distribute must include a readable copy of the "NOTICE" text file. *******************************************************************************/ package at.gv.util.xsd.mis; 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 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 _MandateIssueRequest_QNAME = new QName("http://reference.e-government.gv.at/namespace/mandates/mis/1.0/xsd", "MandateIssueRequest"); private final static QName _MandateIssueResponse_QNAME = new QName("http://reference.e-government.gv.at/namespace/mandates/mis/1.0/xsd", "MandateIssueResponse"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: at.gv.util.xsd.mis * */ public ObjectFactory() { } /** * Create an instance of {@link MandateIssueResponseType } * */ public MandateIssueResponseType createMandateIssueResponseType() { return new MandateIssueResponseType(); } /** * Create an instance of {@link MandateIssueResponseType.Mandates } * */ public MandateIssueResponseType.Mandates createMandateIssueResponseTypeMandates() { return new MandateIssueResponseType.Mandates(); } /** * Create an instance of {@link MandateIssueRequestType } * */ public MandateIssueRequestType createMandateIssueRequestType() { return new MandateIssueRequestType(); } /** * Create an instance of {@link Target } * */ public Target createTarget() { return new Target(); } /** * Create an instance of {@link MandateIdentifiers } * */ public MandateIdentifiers createMandateIdentifiers() { return new MandateIdentifiers(); } /** * Create an instance of {@link MandateIssueResponseType.Error } * */ public MandateIssueResponseType.Error createMandateIssueResponseTypeError() { return new MandateIssueResponseType.Error(); } /** * Create an instance of {@link MandateIssueResponseType.Mandates.Mandate } * */ public MandateIssueResponseType.Mandates.Mandate createMandateIssueResponseTypeMandatesMandate() { return new MandateIssueResponseType.Mandates.Mandate(); } /** * Create an instance of {@link MandateIssueRequestType.Filters } * */ public MandateIssueRequestType.Filters createMandateIssueRequestTypeFilters() { return new MandateIssueRequestType.Filters(); } /** * Create an instance of {@link JAXBElement }{@code <}{@link MandateIssueRequestType }{@code >}} * */ @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/mandates/mis/1.0/xsd", name = "MandateIssueRequest") public JAXBElement createMandateIssueRequest(MandateIssueRequestType value) { return new JAXBElement(_MandateIssueRequest_QNAME, MandateIssueRequestType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link MandateIssueResponseType }{@code >}} * */ @XmlElementDecl(namespace = "http://reference.e-government.gv.at/namespace/mandates/mis/1.0/xsd", name = "MandateIssueResponse") public JAXBElement createMandateIssueResponse(MandateIssueResponseType value) { return new JAXBElement(_MandateIssueResponse_QNAME, MandateIssueResponseType.class, null, value); } }