X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=support%2Fspring%2Fsrc%2Ftest%2Fjava%2Forg%2Fwamblee%2Ftest%2Fspring%2FTestTransactionCallback.java;h=0a26c8ac6c7db0520b4ae8e846067fec4f57568d;hb=8de36ff0206c996baf3ee4adc3e2293b12ff5f39;hp=7a2891bd2b675b337811820c8e2ba97608dc8539;hpb=89c06d4d52b46c154128c97d6e758fa1f4fc7a6e;p=utils diff --git a/support/spring/src/test/java/org/wamblee/test/spring/TestTransactionCallback.java b/support/spring/src/test/java/org/wamblee/test/spring/TestTransactionCallback.java index 7a2891bd..0a26c8ac 100644 --- a/support/spring/src/test/java/org/wamblee/test/spring/TestTransactionCallback.java +++ b/support/spring/src/test/java/org/wamblee/test/spring/TestTransactionCallback.java @@ -17,22 +17,20 @@ package org.wamblee.test.spring; import java.util.Map; - /** * Transaction callback for testing. The test will fail if any type of exception * is thrown. - * + * * @author Erik Brakkee */ public interface TestTransactionCallback { /** - * Executes code within a transaction, causing the testcase to fail - * if any type of exception is thrown. - * + * Executes code within a transaction, causing the testcase to fail if any + * type of exception is thrown. + * * @return A map containg the resuls of the execution. This is a convenient * method of returning multiple results from a call. - * - * @throws Exception DOCUMENT ME! + * */ Map execute() throws Exception; }