This project has retired. For details please refer to its
Attic page .
ContainerRequestResponseUnwrapper (Jetspeed-2 Core API 2.3.1 API)
JavaScript is disabled on your browser.
Summary:
Nested |
Field |
Constr |
Method
Detail:
Field |
Constr |
Method
public interface ContainerRequestResponseUnwrapper
ContainerRequestResponseUnwrapper finds the web container servlet request
or servlet response suitable for cross-context dispatching
from the current container request or response by unwrapping.
Third-party module can provide an implementation to decorate the real request
or response object of a servlet container for instance to ensure reliable
behavior when executing multiple portlet invocations in parallel on top of
the same web container request and response.
Version:
$Id$
Author:
Woonsan Ko
Method Summary
Methods
Modifier and Type
Method and Description
javax.servlet.ServletRequest
unwrapContainerRequest (javax.servlet.http.HttpServletRequest containerRequest)
Unwraps the container request to find the web container servlet request
suitable for cross-context request dispatching.
javax.servlet.ServletResponse
unwrapContainerResponse (javax.servlet.http.HttpServletResponse containerResponse)
Unwraps the container response to find the web container servlet response
suitable for cross-context request dispatching.
Method Detail
unwrapContainerRequest
javax.servlet.ServletRequest unwrapContainerRequest(javax.servlet.http.HttpServletRequest containerRequest)
Unwraps the container request to find the web container servlet request
suitable for cross-context request dispatching.
Parameters: containerRequest
- The container request to be unwrapped.
Returns: servletRequest The servlet request found by unwrapping.
unwrapContainerResponse
javax.servlet.ServletResponse unwrapContainerResponse(javax.servlet.http.HttpServletResponse containerResponse)
Unwraps the container response to find the web container servlet response
suitable for cross-context request dispatching.
Parameters: containerResponse
- The container response to be unwrapped.
Returns: servletResponse The servlet response found by unwrapping.
Summary:
Nested |
Field |
Constr |
Method
Detail:
Field |
Constr |
Method
Copyright © 1999–2016 The Apache Software Foundation . All rights reserved.