Coverage Report - org.apache.tapestry.portlet.PortletResponseRenderer
 
Classes in this File Line Coverage Branch Coverage Complexity
PortletResponseRenderer
0%
0/11
N/A
1
 
 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 org.apache.tapestry.IRequestCycle;
 18  
 import org.apache.tapestry.services.ResponseRenderer;
 19  
 import org.apache.tapestry.services.ServiceConstants;
 20  
 
 21  
 import javax.portlet.ActionResponse;
 22  
 import javax.portlet.PortletRequest;
 23  
 
 24  
 /**
 25  
  * Sets render parameters on the current {@link javax.portlet.ActionResponse}
 26  
  * that will invoke the {@link org.apache.tapestry.portlet.RenderService} to
 27  
  * render the (currently) active page. This reflects the Portlet API's very
 28  
  * clear division between processing an action and rendering a response; we need
 29  
  * to record into the implicit render URL the render service and the name of the
 30  
  * active page.
 31  
  * 
 32  
  * @author Howard M. Lewis Ship
 33  
  * @since 4.0
 34  
  */
 35  0
 public class PortletResponseRenderer implements ResponseRenderer
 36  
 {
 37  
     private PortletRequest _request;
 38  
 
 39  
     private ActionResponse _response;
 40  
 
 41  
     public void renderResponse(IRequestCycle cycle)
 42  
     {
 43  0
         String pageName = cycle.getPage().getPageName();
 44  
         
 45  0
         _response.setRenderParameter(ServiceConstants.SERVICE, PortletConstants.RENDER_SERVICE);
 46  0
         _response.setRenderParameter(ServiceConstants.PAGE, pageName);
 47  0
         _response.setRenderParameter(PortletConstants.PORTLET_MODE, _request.getPortletMode().toString());
 48  0
         _response.setRenderParameter(PortletConstants.WINDOW_STATE, _request.getWindowState().toString());
 49  0
     }
 50  
 
 51  
     public void setResponse(ActionResponse response)
 52  
     {
 53  0
         _response = response;
 54  0
     }
 55  
 
 56  
     public void setRequest(PortletRequest request)
 57  
     {
 58  0
         _request = request;
 59  0
     }
 60  
 }