01: package org.apache.struts.action;
02:
03: import java.io.IOException;
04:
05: import javax.servlet.ServletException;
06: import javax.servlet.http.HttpServletRequest;
07: import javax.servlet.http.HttpServletResponse;
08:
09: /**
10: * The IPortletStrutsLifecycle interface is used by the struts portlet
11: * to invoke the Struts portlet request processor.
12: */
13:
14: public interface IPortletStrutsLifecycle {
15:
16: public void processAction(HttpServletRequest request,
17: HttpServletResponse response) throws IOException,
18: ServletException;
19:
20: public void render(HttpServletRequest request,
21: HttpServletResponse response) throws IOException,
22: ServletException;
23:
24: }
|