Methods Summary |
---|
public void | delistResource(ResourceHandle resource, int xaresFlag)delist the ResourceHandle from the transaction
This implementation of the method is expected to be a no-op
if (_logger.isLoggable(Level.FINE)) {
_logger.fine("NoTxResourceManagerImpl :: delistResource called");
}
|
public void | enlistResource(ResourceHandle h)Enlist the ResourceHandle in the transaction
This implementation of the method is expected to be a no-op
if (_logger.isLoggable(Level.FINE)) {
_logger.fine("NoTxResourceManagerImpl :: enlistResource called");
}
|
public java.lang.Object | getComponent()Returns the component invoking resource request.
return null;
|
public javax.transaction.Transaction | getTransaction()Returns null since this connection is outside any tx context
_logger = LogDomains.getLogger(LogDomains.RSR_LOGGER);
return null;
|
public void | registerResource(ResourceHandle handle)Register the ResourceHandle in the transaction
This implementation of the method is expected to be a no-op
if (_logger.isLoggable(Level.FINE)) {
_logger.fine("NoTxResourceManagerImpl :: registerResource called");
}
|
public void | rollBackTransaction()Get's the component's transaction and marks it for rolling back.
This implementation of the method is expected to be a no-op
if (_logger.isLoggable(Level.FINE)) {
_logger.fine("rollBackTransaction called in NoTxResourceManagerImpl");
}
|
public void | unregisterResource(ResourceHandle resource, int xaresFlag)Unregister the ResourceHandle from the transaction
This implementation of the method is expected to be a no-op
if (_logger.isLoggable(Level.FINE)) {
_logger.fine("NoTxResourceManagerImpl :: unregisterResource called");
}
|