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.impl;
21
22 import java.util.Map;
23
24 import javax.portlet.ActionRequest;
25 import javax.servlet.ServletConfig;
26
27 import org.apache.pluto.core.impl.ActionRequestImpl;
28 import org.apache.pluto.factory.ActionRequestFactory;
29 import org.apache.pluto.om.window.PortletWindow;
30
31 /***
32
33 *
34 * To change this generated comment edit the template variable "typecomment":
35 * Window>Preferences>Java>Templates.
36 * To enable and disable the creation of type comments go to
37 * Window>Preferences>Java>Code Generation.
38 */
39 public class ActionRequestFactoryImpl implements ActionRequestFactory {
40
41 /***
42 * @see org.apache.pluto.factory.Factory#init(ServletConfig, Map)
43 */
44 public void init(ServletConfig config, Map properties) throws Exception {
45 }
46
47
48 public ActionRequest getActionRequest(PortletWindow portletWindow,
49 javax.servlet.http.HttpServletRequest servletRequest,
50 javax.servlet.http.HttpServletResponse servletResponse)
51 {
52 ActionRequest actionRequest = new ActionRequestImpl(portletWindow, servletRequest);
53 return actionRequest;
54 }
55
56
57
58 /***
59 * @see org.apache.pluto.factory.Factory#destroy()
60 */
61 public void destroy() throws Exception {
62 }
63
64 }