git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2215 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2006-01-26 13:37:25 +00:00
parent cd8c1dd9fc
commit 90d70c6794

View File

@@ -57,14 +57,16 @@ public interface TransactionListener
* <p>
* Any exceptions generated here will cause the transaction to rollback.
* <p>
* All transaction resources are still available.
* Although all transaction resources are still available, this method should
* be used only for cleaning up resources after a commit has occured.
*/
void afterCommit();
/**
* Invoked after transaction rollback.
* <p>
* All transaction resources are still available.
* Although all transaction resources are still available, this method should
* be used only for cleaning up resources after a rollback has occured.
*/
void afterRollback();
}