From e210b313b4a7bf17aaef10d0027e57fea2642048 Mon Sep 17 00:00:00 2001 From: Derek Hulley Date: Mon, 10 Oct 2011 15:07:18 +0000 Subject: [PATCH] Fix javadoc as per ALF-10711 git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@31094 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261 --- .../alfresco/repo/transaction/TransactionListener.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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. */