com.atomikos.datasource.xa
Class LoggingXAResource

java.lang.Object
  extended by com.atomikos.datasource.xa.LoggingXAResource
All Implemented Interfaces:
XAResource

public class LoggingXAResource
extends Object
implements XAResource

A wrapper for an XAResource that enables logging to a PrintWriter.


Field Summary
 
Fields inherited from interface javax.transaction.xa.XAResource
TMENDRSCAN, TMFAIL, TMJOIN, TMNOFLAGS, TMONEPHASE, TMRESUME, TMSTARTRSCAN, TMSUCCESS, TMSUSPEND, XA_OK, XA_RDONLY
 
Constructor Summary
LoggingXAResource(XAResource xares, PrintWriter writer)
          Create a new instance.
 
Method Summary
 void commit(Xid xid, boolean onephase)
           
 void end(Xid xid, int flags)
           
 void forget(Xid xid)
           
 int getTransactionTimeout()
           
 boolean isSameRM(XAResource xares)
           
 int prepare(Xid xid)
           
 Xid[] recover(int flag)
           
 void rollback(Xid xid)
           
 boolean setTransactionTimeout(int secs)
           
 void start(Xid xid, int flags)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

LoggingXAResource

public LoggingXAResource(XAResource xares,
                         PrintWriter writer)
Create a new instance.

Parameters:
xares - The XAResource to wrap.
writer - The writer to log to, null if none.
Method Detail

recover

public Xid[] recover(int flag)
              throws XAException
Specified by:
recover in interface XAResource
Throws:
XAException
See Also:
XAResource

setTransactionTimeout

public boolean setTransactionTimeout(int secs)
                              throws XAException
Specified by:
setTransactionTimeout in interface XAResource
Throws:
XAException
See Also:
XAResource

getTransactionTimeout

public int getTransactionTimeout()
                          throws XAException
Specified by:
getTransactionTimeout in interface XAResource
Throws:
XAException
See Also:
XAResource

isSameRM

public boolean isSameRM(XAResource xares)
                 throws XAException
Specified by:
isSameRM in interface XAResource
Throws:
XAException
See Also:
XAResource

start

public void start(Xid xid,
                  int flags)
           throws XAException
Specified by:
start in interface XAResource
Throws:
XAException
See Also:
XAResource

end

public void end(Xid xid,
                int flags)
         throws XAException
Specified by:
end in interface XAResource
Throws:
XAException
See Also:
XAResource

prepare

public int prepare(Xid xid)
            throws XAException
Specified by:
prepare in interface XAResource
Throws:
XAException
See Also:
XAResource

rollback

public void rollback(Xid xid)
              throws XAException
Specified by:
rollback in interface XAResource
Throws:
XAException
See Also:
XAResource

commit

public void commit(Xid xid,
                   boolean onephase)
            throws XAException
Specified by:
commit in interface XAResource
Throws:
XAException
See Also:
XAResource

forget

public void forget(Xid xid)
            throws XAException
Specified by:
forget in interface XAResource
Throws:
XAException
See Also:
XAResource


Copyright © 2011. All Rights Reserved.