FileDocCategorySizeDatePackage
ObjectFactory.javaAPI DocExample7237Tue May 29 16:57:20 BST 2007com.sun.xml.ws.tx.webservice.member.at

ObjectFactory

public class ObjectFactory extends Object
This object contains factory methods for each Java content interface and Java element interface generated in the com.sun.xml.ws.tx.webservice.member.at 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.

Fields Summary
private static final QName
_Rollback_QNAME
private static final QName
_ReadOnly_QNAME
private static final QName
_Committed_QNAME
private static final QName
_Prepare_QNAME
private static final QName
_Aborted_QNAME
private static final QName
_Replay_QNAME
private static final QName
_Prepared_QNAME
private static final QName
_Commit_QNAME
Constructors Summary
public ObjectFactory()
Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.sun.xml.ws.tx.webservice.member.at


                            
      
    
Methods Summary
public javax.xml.bind.JAXBElementcreateAborted(Notification value)
Create an instance of {@link JAXBElement }{@code <}{@link Notification }{@code >}}

        return new JAXBElement<Notification>(_Aborted_QNAME, Notification.class, null, value);
    
public javax.xml.bind.JAXBElementcreateCommit(Notification value)
Create an instance of {@link JAXBElement }{@code <}{@link Notification }{@code >}}

        return new JAXBElement<Notification>(_Commit_QNAME, Notification.class, null, value);
    
public javax.xml.bind.JAXBElementcreateCommitted(Notification value)
Create an instance of {@link JAXBElement }{@code <}{@link Notification }{@code >}}

        return new JAXBElement<Notification>(_Committed_QNAME, Notification.class, null, value);
    
public NotificationcreateNotification()
Create an instance of {@link Notification }

        return new Notification();
    
public javax.xml.bind.JAXBElementcreatePrepare(Notification value)
Create an instance of {@link JAXBElement }{@code <}{@link Notification }{@code >}}

        return new JAXBElement<Notification>(_Prepare_QNAME, Notification.class, null, value);
    
public javax.xml.bind.JAXBElementcreatePrepared(Notification value)
Create an instance of {@link JAXBElement }{@code <}{@link Notification }{@code >}}

        return new JAXBElement<Notification>(_Prepared_QNAME, Notification.class, null, value);
    
public javax.xml.bind.JAXBElementcreateReadOnly(Notification value)
Create an instance of {@link JAXBElement }{@code <}{@link Notification }{@code >}}

        return new JAXBElement<Notification>(_ReadOnly_QNAME, Notification.class, null, value);
    
public javax.xml.bind.JAXBElementcreateReplay(Notification value)
Create an instance of {@link JAXBElement }{@code <}{@link Notification }{@code >}}

        return new JAXBElement<Notification>(_Replay_QNAME, Notification.class, null, value);
    
public javax.xml.bind.JAXBElementcreateRollback(Notification value)
Create an instance of {@link JAXBElement }{@code <}{@link Notification }{@code >}}

        return new JAXBElement<Notification>(_Rollback_QNAME, Notification.class, null, value);