KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > inversoft > verge > mvc > controller > form > config > test > TestLongTxnSetup


1 /*
2  * Copyright (c) 2003, Inversoft
3  *
4  * This software is distribuable under the GNU Lesser General Public License.
5  * For more information visit gnu.org.
6  */

7 package com.inversoft.verge.mvc.controller.form.config.test;
8
9
10 import com.inversoft.verge.mvc.controller.Action;
11 import com.inversoft.verge.mvc.controller.LongTxnSetup;
12
13
14 /**
15  * <p>
16  * Test class for long transaction support.
17  * </p>
18  */

19 public class TestLongTxnSetup implements LongTxnSetup {
20     
21     public String JavaDoc getLongTxnEndURL(Action action) {
22         return null;
23     }
24
25     public String JavaDoc getLongTxnStartURL(Action action) {
26         return null;
27     }
28
29     public String JavaDoc getLongTxnURLCategory(Action action) {
30         return null;
31     }
32 }
Popular Tags