Package org.gatein.wci
Interface RequestDispatchCallback
public interface RequestDispatchCallback
Callback contract.
-
Method Summary
Modifier and TypeMethodDescriptiondoCallback(jakarta.servlet.ServletContext dispatchedServletContext, jakarta.servlet.http.HttpServletRequest dispatchedRequest, jakarta.servlet.http.HttpServletResponse dispatchedResponse, Object handback) Performs the request dispatch logic.
-
Method Details
-
doCallback
Object doCallback(jakarta.servlet.ServletContext dispatchedServletContext, jakarta.servlet.http.HttpServletRequest dispatchedRequest, jakarta.servlet.http.HttpServletResponse dispatchedResponse, Object handback) throws jakarta.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:
jakarta.servlet.ServletException- if an exception occurs that interferes with the normal operationIOException- if an input or output exception occurs
-