1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 package org.apache.pluto.factory;
21
22 import javax.portlet.ActionRequest;
23
24 import org.apache.pluto.om.window.PortletWindow;
25
26 /***
27
28 *
29 * To change this generated comment edit the template variable "typecomment":
30 * Window>Preferences>Java>Templates.
31 * To enable and disable the creation of type comments go to
32 * Window>Preferences>Java>Code Generation.
33 */
34 public interface ActionRequestFactory extends Factory {
35
36 public ActionRequest getActionRequest(PortletWindow portletWindow,
37 javax.servlet.http.HttpServletRequest servletRequest,
38 javax.servlet.http.HttpServletResponse servletResponse);
39 }