1 7 package com.inversoft.verge.mvc.controller; 8 9 10 import javax.servlet.http.HttpServletRequest ; 11 import javax.servlet.http.HttpServletResponse ; 12 13 import com.inversoft.verge.mvc.MVCException; 14 15 16 27 public interface LongTxnHandler { 28 29 39 void handleStartLongTxn(HttpServletRequest request, HttpServletResponse response, 40 String url) 41 throws MVCException; 42 43 55 void handleEndLongTxn(HttpServletRequest request, HttpServletResponse response, 56 String url, Result result) 57 throws MVCException; 58 } | Popular Tags |