| org.objectweb.jotm.TransactionRecovery
All known Subclasses: org.objectweb.jotm.TransactionRecoveryImpl,
TransactionRecovery | public interface TransactionRecovery (Code) | | |
registerResourceManager | public void registerResourceManager(String rmName, XAResource rmXares, String info, TransactionResourceManager trm) throws XAException(Code) | | Register a Resource Manager with the JOTM Transaction Manager.
Parameters: rmName - The Resource Manager to be registered. Parameters: rmXares - XAResource associated with the Resource Manager Parameters: info - String of information for display with admin interface Parameters: trm - TransactionResourceManager to return the registered XAResource exception: XAException - if an error occurs |
registerResourceManager | public void registerResourceManager(String rmName, XAResource rmXares, String info, Properties rmProperties, TransactionResourceManager trm) throws XAException(Code) | | Added 3/30/05
Register a Resource Manager with the JOTM Transaction Manager with Recovery properties.
Parameters: rmName - The Resource Manager to be registered. Parameters: rmXares - XAResource associated with the Resource Manager Parameters: info - String of information for display with admin interface Parameters: rmProperties - - Strings specifying recovery properties for resource Parameters: trm - TransactionResourceManager to return the registered XAResource exception: XAException - if an error occurs |
reportResourceManager | XAResource reportResourceManager(String rmName) throws XAException(Code) | | Provide information regarding the status and state of the XAResource.
The XAResource to be reported upon. exception: XAException - if an error occurs |
startResourceManagerRecovery | public void startResourceManagerRecovery() throws XAException(Code) | | Log all the Resource Managers with the JOTM Transaction Manager.
exception: XAException - if an error occurs |
unregisterResourceManager | public void unregisterResourceManager(String rmName, XAResource rmXares) throws XAException(Code) | | Unregister a Resource Manager from the JOTM Transaction Manager.
Parameters: rmName - The Resource Manager to be unregistered. Parameters: rmXares - XAResource associated with the Resource Manager exception: XAException - if an error occurs |
|
|