All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.xml.ws.tx.at.v11.types.ObjectFactory Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
/*
 * Copyright (c) 1997, 2020 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Distribution License v. 1.0, which is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

package com.sun.xml.ws.tx.at.v11.types;

import jakarta.xml.bind.JAXBElement;
import jakarta.xml.bind.annotation.XmlElementDecl;
import jakarta.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 com.sun.xml.ws.tx.at.v11.types 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 _Aborted_QNAME = new QName("http://docs.oasis-open.org/ws-tx/wsat/2006/06", "Aborted"); private final static QName _Commit_QNAME = new QName("http://docs.oasis-open.org/ws-tx/wsat/2006/06", "Commit"); private final static QName _ReadOnly_QNAME = new QName("http://docs.oasis-open.org/ws-tx/wsat/2006/06", "ReadOnly"); private final static QName _Committed_QNAME = new QName("http://docs.oasis-open.org/ws-tx/wsat/2006/06", "Committed"); private final static QName _Rollback_QNAME = new QName("http://docs.oasis-open.org/ws-tx/wsat/2006/06", "Rollback"); private final static QName _Prepare_QNAME = new QName("http://docs.oasis-open.org/ws-tx/wsat/2006/06", "Prepare"); private final static QName _Prepared_QNAME = new QName("http://docs.oasis-open.org/ws-tx/wsat/2006/06", "Prepared"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.sun.xml.ws.tx.at.v11.types * */ public ObjectFactory() { } /** * Create an instance of {@link Notification } * */ public Notification createNotification() { return new Notification(); } /** * Create an instance of {@link ATAssertion } * */ public ATAssertion createATAssertion() { return new ATAssertion(); } /** * Create an instance of {@link JAXBElement }{@code <}{@link Notification }{@code >}} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/ws-tx/wsat/2006/06", name = "Aborted") public JAXBElement createAborted(Notification value) { return new JAXBElement(_Aborted_QNAME, Notification.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link Notification }{@code >}} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/ws-tx/wsat/2006/06", name = "Commit") public JAXBElement createCommit(Notification value) { return new JAXBElement(_Commit_QNAME, Notification.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link Notification }{@code >}} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/ws-tx/wsat/2006/06", name = "ReadOnly") public JAXBElement createReadOnly(Notification value) { return new JAXBElement(_ReadOnly_QNAME, Notification.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link Notification }{@code >}} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/ws-tx/wsat/2006/06", name = "Committed") public JAXBElement createCommitted(Notification value) { return new JAXBElement(_Committed_QNAME, Notification.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link Notification }{@code >}} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/ws-tx/wsat/2006/06", name = "Rollback") public JAXBElement createRollback(Notification value) { return new JAXBElement(_Rollback_QNAME, Notification.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link Notification }{@code >}} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/ws-tx/wsat/2006/06", name = "Prepare") public JAXBElement createPrepare(Notification value) { return new JAXBElement(_Prepare_QNAME, Notification.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link Notification }{@code >}} * */ @XmlElementDecl(namespace = "http://docs.oasis-open.org/ws-tx/wsat/2006/06", name = "Prepared") public JAXBElement createPrepared(Notification value) { return new JAXBElement(_Prepared_QNAME, Notification.class, null, value); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy