KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > inversoft > verge > mvc > test > LongTxnSetup


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.test;
8
9
10 import com.inversoft.verge.mvc.controller.Action;
11
12
13 /**
14  * <p>
15  * This is a testing class for action flow long txn support.
16  * </p>
17  *
18  * @author Brian Pontarelli
19  */

20 public class LongTxnSetup implements com.inversoft.verge.mvc.controller.LongTxnSetup {
21
22     public String JavaDoc getLongTxnStartURL(Action action) {
23         return "/longTxn1.jsp";
24     }
25
26     public String JavaDoc getLongTxnEndURL(Action action) {
27         return null;
28     }
29
30     public String JavaDoc getLongTxnURLCategory(Action action) {
31         return null;
32     }
33 }
34
Popular Tags