KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > tapestry > portlet > PortletRequestGlobalsImpl


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     public void store(ActionRequest request, ActionResponse response)
43     {
44         _actionRequest = request;
45         _portletRequest = request;
46
47         _actionResponse = response;
48     }
49
50     public void store(RenderRequest request, RenderResponse response)
51     {
52         _renderRequest = request;
53         _portletRequest = request;
54
55         _renderResponse = response;
56     }
57
58     public ActionRequest getActionRequest()
59     {
60         return _actionRequest;
61     }
62
63     public ActionResponse getActionResponse()
64     {
65         return _actionResponse;
66     }
67
68     public RenderRequest getRenderRequest()
69     {
70         return _renderRequest;
71     }
72
73     public RenderResponse getRenderResponse()
74     {
75         return _renderResponse;
76     }
77
78     public boolean isRenderRequest()
79     {
80         return _renderRequest != null;
81     }
82
83     public PortletRequest getPortletRequest()
84     {
85         return _portletRequest;
86     }
87 }
Popular Tags