|
|||||||||||||||||||
30 day Evaluation License registered to hlship@comcast.net Your 30 day evaluation period has expired. Please visit http://www.cenqua.com to obtain a licensed version of Clover | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
PortletRequestGlobalsImpl.java | - | 0% | 0% | 0% |
|
1 | // Copyright 2005 The Apache Software Foundation | |
2 | // | |
3 | // Licensed under the Apache License, Version 2.0 (the "License"); | |
4 | // you may not use this file except in compliance with the License. | |
5 | // You may obtain a copy of the License at | |
6 | // | |
7 | // http://www.apache.org/licenses/LICENSE-2.0 | |
8 | // | |
9 | // Unless required by applicable law or agreed to in writing, software | |
10 | // distributed under the License is distributed on an "AS IS" BASIS, | |
11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
12 | // See the License for the specific language governing permissions and | |
13 | // limitations under the License. | |
14 | ||
15 | package org.apache.tapestry.portlet; | |
16 | ||
17 | import javax.portlet.ActionRequest; | |
18 | import javax.portlet.ActionResponse; | |
19 | import javax.portlet.PortletRequest; | |
20 | import javax.portlet.RenderRequest; | |
21 | import javax.portlet.RenderResponse; | |
22 | ||
23 | /** | |
24 | * Implementation of the tapestry.portlet.PortletRequestGlobals service, which uses the threaded | |
25 | * service lifecycle model. | |
26 | * | |
27 | * @author Howard M. Lewis Ship | |
28 | * @since 4.0 | |
29 | */ | |
30 | public class PortletRequestGlobalsImpl implements PortletRequestGlobals | |
31 | { | |
32 | private ActionRequest _actionRequest; | |
33 | ||
34 | private ActionResponse _actionResponse; | |
35 | ||
36 | private RenderResponse _renderResponse; | |
37 | ||
38 | private RenderRequest _renderRequest; | |
39 | ||
40 | private PortletRequest _portletRequest; | |
41 | ||
42 | 0 | public void store(ActionRequest request, ActionResponse response) |
43 | { | |
44 | 0 | _actionRequest = request; |
45 | 0 | _portletRequest = request; |
46 | ||
47 | 0 | _actionResponse = response; |
48 | } | |
49 | ||
50 | 0 | public void store(RenderRequest request, RenderResponse response) |
51 | { | |
52 | 0 | _renderRequest = request; |
53 | 0 | _portletRequest = request; |
54 | ||
55 | 0 | _renderResponse = response; |
56 | } | |
57 | ||
58 | 0 | public ActionRequest getActionRequest() |
59 | { | |
60 | 0 | return _actionRequest; |
61 | } | |
62 | ||
63 | 0 | public ActionResponse getActionResponse() |
64 | { | |
65 | 0 | return _actionResponse; |
66 | } | |
67 | ||
68 | 0 | public RenderRequest getRenderRequest() |
69 | { | |
70 | 0 | return _renderRequest; |
71 | } | |
72 | ||
73 | 0 | public RenderResponse getRenderResponse() |
74 | { | |
75 | 0 | return _renderResponse; |
76 | } | |
77 | ||
78 | 0 | public boolean isRenderRequest() |
79 | { | |
80 | 0 | return _renderRequest != null; |
81 | } | |
82 | ||
83 | 0 | public PortletRequest getPortletRequest() |
84 | { | |
85 | 0 | return _portletRequest; |
86 | } | |
87 | } |
|