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
This commit is contained in:
Derek Hulley
2011-10-10 15:07:18 +00:00
parent 161359b39c
commit e210b313b4

View File

@@ -46,9 +46,6 @@ public interface TransactionListener
* {@link #beforeCommit(boolean) } even if {@link #beforeCommit(boolean)}
* failed.
* <p>
* Any exceptions generated here will only be logged and will have no effect
* on the state of the transaction.
* <p>
* All transaction resources are still available.
*/
void beforeCompletion();
@@ -56,7 +53,8 @@ public interface TransactionListener
/**
* Invoked after transaction commit.
* <p>
* 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.
* <p>
* 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.
* <p>
* Any exceptions generated here will only be logged and will have no effect
* on the state of the transaction.
* <p>
* Although all transaction resources are still available, this method should
* be used only for cleaning up resources after a rollback has occured.
*/