From 90d70c6794e63ca783bf41a70ca34a3fee20b335 Mon Sep 17 00:00:00 2001 From: Derek Hulley Date: Thu, 26 Jan 2006 13:37:25 +0000 Subject: [PATCH] Javadocs git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2215 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261 --- .../org/alfresco/repo/transaction/TransactionListener.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/source/java/org/alfresco/repo/transaction/TransactionListener.java b/source/java/org/alfresco/repo/transaction/TransactionListener.java index 3e54b0d52f..7b9d191fde 100644 --- a/source/java/org/alfresco/repo/transaction/TransactionListener.java +++ b/source/java/org/alfresco/repo/transaction/TransactionListener.java @@ -57,14 +57,16 @@ public interface TransactionListener *

* Any exceptions generated here will cause the transaction to rollback. *

- * 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. *

- * 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(); }