You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jetspeed-dev@portals.apache.org by at...@apache.org on 2004/07/30 00:25:51 UTC

cvs commit: jakarta-jetspeed-2/commons/src/java/org/apache/jetspeed/portlet ServletContextProviderImpl.java

ate         2004/07/29 15:25:51

  Added:       commons/src/java/org/apache/jetspeed/portlet
                        ServletContextProviderImpl.java
  Log:
  Replacement for the StrutsServletContextProviderImpl now implementing the new Portals Bridges common ServletContextProvider
  
  Revision  Changes    Path
  1.1                  jakarta-jetspeed-2/commons/src/java/org/apache/jetspeed/portlet/ServletContextProviderImpl.java
  
  Index: ServletContextProviderImpl.java
  ===================================================================
  /*
   * Copyright 2000-2004 The Apache Software Foundation.
   *
   * Licensed under the Apache License, Version 2.0 (the "License");
   * you may not use this file except in compliance with the License.
   * You may obtain a copy of the License at
   *
   *      http://www.apache.org/licenses/LICENSE-2.0
   *
   * Unless required by applicable law or agreed to in writing, software
   * distributed under the License is distributed on an "AS IS" BASIS,
   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   * See the License for the specific language governing permissions and
   * limitations under the License.
   */
  package org.apache.jetspeed.portlet;
  
  import javax.portlet.GenericPortlet;
  import javax.portlet.PortletRequest;
  import javax.portlet.PortletResponse;
  import javax.servlet.ServletContext;
  import javax.servlet.http.HttpServletRequest;
  import javax.servlet.http.HttpServletRequestWrapper;
  import javax.servlet.http.HttpServletResponse;
  import javax.servlet.http.HttpServletResponseWrapper;
  
  import org.apache.jetspeed.container.JetspeedPortletContext;
  import org.apache.portals.bridges.common.StrutsServletContextProvider;
  
  /**
   * ServletContextProviderImpl supplies access to the
   * Servlet context of a Jetspeed Portlet.
   * @author <a href="mailto:ate@douma.nu">Ate Douma</a>
   * @version $Id: ServletContextProviderImpl.java,v 1.1 2004/07/29 22:25:51 ate Exp $
   */
  public class ServletContextProviderImpl implements StrutsServletContextProvider 
  {
      public ServletContext getServletContext(GenericPortlet portlet) 
      {
          return ((JetspeedPortletContext)portlet.getPortletContext()).getServletContext();
      }
  
      public HttpServletRequest getHttpServletRequest(GenericPortlet portlet, PortletRequest request) 
      {
          return (HttpServletRequest) ((HttpServletRequestWrapper) request).getRequest();
      }
  
      public HttpServletResponse getHttpServletResponse(GenericPortlet portlet, PortletResponse response) 
      {
          return (HttpServletResponse) ((HttpServletResponseWrapper) response).getResponse();
      }
  }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: jetspeed-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jetspeed-dev-help@jakarta.apache.org