Interface TransactionManagerServiceMBean

  • All Known Implementing Classes:
    TransactionManagerService, TransactionManagerService

    public interface TransactionManagerServiceMBean
    The MBean interface for the TransactionManager JBoss service.
    Version:
    $Id: TransactionManagerServiceMBean.java,v 1.3 2005/06/17 10:53:51 kconner Exp $
    Author:
    Richard A. Begg (richard.begg@arjuna.com)
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      javax.transaction.TransactionManager getTransactionManager()
      Retrieve a reference to the JTA transaction manager.
      javax.transaction.TransactionSynchronizationRegistry getTransactionSynchronizationRegistry()
      Retrieve a reference to the JTA TransactionSynchronizationRegistry.
      javax.transaction.UserTransaction getUserTransaction()
      Retrieve a reference to the JTA user transaction manager.
      org.jboss.tm.JBossXATerminator getXATerminator()
      Get the XA Terminator
      void registerXAExceptionFormatter​(java.lang.Class c, org.jboss.tm.XAExceptionFormatter f)
      This method has been put in here so that it is compatible with the JBoss standard Transaction Manager.
      void unregisterXAExceptionFormatter​(java.lang.Class c)
      This method has been put in here so that it is compatible with the JBoss standard Transaction Manager.
    • Method Detail

      • getTransactionManager

        javax.transaction.TransactionManager getTransactionManager()
        Retrieve a reference to the JTA transaction manager.
        Returns:
        A reference to the JTA transaction manager.
      • getXATerminator

        org.jboss.tm.JBossXATerminator getXATerminator()
        Get the XA Terminator
        Returns:
        the XA Terminator
      • getUserTransaction

        javax.transaction.UserTransaction getUserTransaction()
        Retrieve a reference to the JTA user transaction manager.
        Returns:
        A reference to the JTA user transaction manager.
      • getTransactionSynchronizationRegistry

        javax.transaction.TransactionSynchronizationRegistry getTransactionSynchronizationRegistry()
        Retrieve a reference to the JTA TransactionSynchronizationRegistry.
        Returns:
        a reference to the JTA TransactionSynchronizationRegistry.
      • registerXAExceptionFormatter

        void registerXAExceptionFormatter​(java.lang.Class c,
                                          org.jboss.tm.XAExceptionFormatter f)
        This method has been put in here so that it is compatible with the JBoss standard Transaction Manager. As we do not support exception formatters just display a warning for the moment.
      • unregisterXAExceptionFormatter

        void unregisterXAExceptionFormatter​(java.lang.Class c)
        This method has been put in here so that it is compatible with the JBoss standard Transaction Manager. As we do not support exception formatters just display a warning for the moment.