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