01: /**
02: * Copyright (c) 2000-2008 Liferay, Inc. All rights reserved.
03: *
04: * Permission is hereby granted, free of charge, to any person obtaining a copy
05: * of this software and associated documentation files (the "Software"), to deal
06: * in the Software without restriction, including without limitation the rights
07: * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
08: * copies of the Software, and to permit persons to whom the Software is
09: * furnished to do so, subject to the following conditions:
10: *
11: * The above copyright notice and this permission notice shall be included in
12: * all copies or substantial portions of the Software.
13: *
14: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15: * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16: * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17: * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18: * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19: * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20: * SOFTWARE.
21: */package com.liferay.portal.kernel.portlet;
22:
23: import java.io.IOException;
24:
25: import java.util.Map;
26:
27: import javax.portlet.ActionResponse;
28: import javax.portlet.PortletMode;
29: import javax.portlet.PortletModeException;
30: import javax.portlet.WindowState;
31: import javax.portlet.WindowStateException;
32:
33: /**
34: * <a href="ActionResponseWrapper.java.html"><b><i>View Source</i></b></a>
35: *
36: * @author Brian Wing Shun Chan
37: *
38: */
39: public class ActionResponseWrapper extends PortletResponseWrapper
40: implements ActionResponse {
41:
42: public ActionResponseWrapper(ActionResponse res) {
43: super (res);
44:
45: _res = res;
46: }
47:
48: public void setWindowState(WindowState windowState)
49: throws WindowStateException {
50:
51: _res.setWindowState(windowState);
52: }
53:
54: public void setPortletMode(PortletMode portletMode)
55: throws PortletModeException {
56:
57: _res.setPortletMode(portletMode);
58: }
59:
60: public void sendRedirect(String location) throws IOException {
61: _res.sendRedirect(location);
62: }
63:
64: public void setRenderParameters(Map parameters) {
65: _res.setRenderParameters(parameters);
66: }
67:
68: public void setRenderParameter(String key, String value) {
69: _res.setRenderParameter(key, value);
70: }
71:
72: public void setRenderParameter(String key, String[] values) {
73: _res.setRenderParameter(key, values);
74: }
75:
76: private ActionResponse _res;
77:
78: }
|