Package org.gatein.wci
Interface RequestDispatchCallback
public interface RequestDispatchCallback
Callback contract.
- Version:
- $Revision: 1.1 $
- Author:
- Julien Viet
-
Method Summary
Modifier and TypeMethodDescriptiondoCallback(javax.servlet.ServletContext dispatchedServletContext, javax.servlet.http.HttpServletRequest dispatchedRequest, javax.servlet.http.HttpServletResponse dispatchedResponse, Object handback) Performs the request dispatch logic.
-
Method Details
-
doCallback
Object doCallback(javax.servlet.ServletContext dispatchedServletContext, javax.servlet.http.HttpServletRequest dispatchedRequest, javax.servlet.http.HttpServletResponse dispatchedResponse, Object handback) throws javax.servlet.ServletException, IOException Performs the request dispatch logic.- Parameters:
dispatchedServletContext- the dispatched servlet contextdispatchedRequest- the dispatched requestdispatchedResponse- the dispatched responsehandback- the handback object provided to the dispatched @return any object- Returns:
- any object
- Throws:
javax.servlet.ServletException- if an exception occurs that interferes with the normal operationIOException- if an input or output exception occurs
-