diff --git a/source/java/org/alfresco/repo/transaction/TransactionListener.java b/source/java/org/alfresco/repo/transaction/TransactionListener.java index 749e460b31..04c93eed80 100644 --- a/source/java/org/alfresco/repo/transaction/TransactionListener.java +++ b/source/java/org/alfresco/repo/transaction/TransactionListener.java @@ -46,9 +46,6 @@ public interface TransactionListener * {@link #beforeCommit(boolean) } even if {@link #beforeCommit(boolean)} * failed. *

- * Any exceptions generated here will only be logged and will have no effect - * on the state of the transaction. - *

* All transaction resources are still available. */ void beforeCompletion(); @@ -56,7 +53,8 @@ public interface TransactionListener /** * Invoked after transaction commit. *

- * Any exceptions generated here will cause the transaction to rollback. + * Any exceptions generated here will only be logged and will have no effect + * on the state of the transaction. *

* Although all transaction resources are still available, this method should * be used only for cleaning up resources after a commit has occured. @@ -66,6 +64,9 @@ public interface TransactionListener /** * Invoked after transaction rollback. *

+ * Any exceptions generated here will only be logged and will have no effect + * on the state of the transaction. + *

* Although all transaction resources are still available, this method should * be used only for cleaning up resources after a rollback has occured. */