This project has retired. For details please refer to its Attic page.
PortletTilesRequestContext (Tiles 2 2.0.7 API)

org.apache.tiles.portlet.context
Class PortletTilesRequestContext

Package class diagram package PortletTilesRequestContext
java.lang.Object
  extended by org.apache.tiles.portlet.context.PortletTilesApplicationContext
      extended by org.apache.tiles.portlet.context.PortletTilesRequestContext
All Implemented Interfaces:
TilesRequestContext, TilesApplicationContext

public class PortletTilesRequestContext
extends PortletTilesApplicationContext
implements TilesRequestContext

Portlet-based TilesApplicationContext implementation.

Version:
$Rev: 632818 $ $Date: 2008-03-02 20:48:05 +0100 (Sun, 02 Mar 2008) $

Field Summary
protected  Map<String,String> param
          The lazily instantiated Map of request parameter name-value.
protected  Map<String,String[]> paramValues
          The lazily instantiated Map of request parameter name-values.
protected  javax.portlet.PortletRequest request
          The PortletRequest for this request.
protected  javax.portlet.PortletResponse response
          The PortletResponse for this request.
 
Fields inherited from class org.apache.tiles.portlet.context.PortletTilesApplicationContext
context
 
Constructor Summary
PortletTilesRequestContext(javax.portlet.PortletContext context, javax.portlet.PortletRequest request, javax.portlet.PortletResponse response)
          Creates a new instance of PortletTilesRequestContext.
 
Method Summary
 void dispatch(String path)
          Dispatches the request to a specified path.
 Map<String,String> getHeader()
          Return an immutable Map that maps header names to the first (or only) header value (as a String).
 Map<String,String[]> getHeaderValues()
          Return an immutable Map that maps header names to the set of all values specified in the request (as a String array).
 Map<String,String> getParam()
          Return an immutable Map that maps request parameter names to the first (or only) value (as a String).
 Map<String,String[]> getParamValues()
          Return an immutable Map that maps request parameter names to the set of all values (as a String array).
 javax.portlet.PortletRequest getRequest()
          Return the PortletRequest for this context.
 Locale getRequestLocale()
          Return the preferred Locale in which the client will accept content.
 Map<String,Object> getRequestScope()
          Return a mutable Map that maps request scope attribute names to their values.
 javax.portlet.PortletResponse getResponse()
          Return the PortletResponse for this context.
 Map<String,Object> getSessionScope()
          Return a mutable Map that maps session scope attribute names to their values.
 void include(String path)
          Includes the response from the specified URL in the current response output.
 void initialize(javax.portlet.PortletRequest request, javax.portlet.PortletResponse response)
          Initialize (or reinitialize) this PortletTilesRequestContext instance for the specified Portlet API objects.
 boolean isUserInRole(String role)
          Determine whether or not the specified user is in the given role.
 void release()
          Release references to allocated resources acquired in initialize() of via subsequent processing.
 
Methods inherited from class org.apache.tiles.portlet.context.PortletTilesApplicationContext
createRequestContext, getApplicationScope, getInitParams, getPortletContext, getResource, getResources, initialize
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

request

protected javax.portlet.PortletRequest request

The PortletRequest for this request.


response

protected javax.portlet.PortletResponse response

The PortletResponse for this request.


param

protected Map<String,String> param

The lazily instantiated Map of request parameter name-value.


paramValues

protected Map<String,String[]> paramValues

The lazily instantiated Map of request parameter name-values.

Constructor Detail

PortletTilesRequestContext

public PortletTilesRequestContext(javax.portlet.PortletContext context,
                                  javax.portlet.PortletRequest request,
                                  javax.portlet.PortletResponse response)
Creates a new instance of PortletTilesRequestContext.

Parameters:
context - The portlet context to use.
request - The request object to use.
response - The response object to use.
Method Detail

initialize

public void initialize(javax.portlet.PortletRequest request,
                       javax.portlet.PortletResponse response)

Initialize (or reinitialize) this PortletTilesRequestContext instance for the specified Portlet API objects.

Parameters:
request - The PortletRequest for this request
response - The PortletResponse for this request

release

public void release()

Release references to allocated resources acquired in initialize() of via subsequent processing. After this method is called, subsequent calls to any other method than initialize() will return undefined results.

Overrides:
release in class PortletTilesApplicationContext

getRequest

public javax.portlet.PortletRequest getRequest()

Return the PortletRequest for this context.

Specified by:
getRequest in interface TilesRequestContext
Returns:
The used portlet request.

getResponse

public javax.portlet.PortletResponse getResponse()

Return the PortletResponse for this context.

Specified by:
getResponse in interface TilesRequestContext
Returns:
The used portlet response.

getHeader

public Map<String,String> getHeader()
Return an immutable Map that maps header names to the first (or only) header value (as a String).

Specified by:
getHeader in interface TilesRequestContext
Returns:
The header map.

getHeaderValues

public Map<String,String[]> getHeaderValues()
Return an immutable Map that maps header names to the set of all values specified in the request (as a String array). Header names must be matched in a case-insensitive manner.

Specified by:
getHeaderValues in interface TilesRequestContext
Returns:
The header values map.

getParam

public Map<String,String> getParam()
Return an immutable Map that maps request parameter names to the first (or only) value (as a String).

Specified by:
getParam in interface TilesRequestContext
Returns:
The parameter map.

getParamValues

public Map<String,String[]> getParamValues()
Return an immutable Map that maps request parameter names to the set of all values (as a String array).

Specified by:
getParamValues in interface TilesRequestContext
Returns:
The parameter values map.

getRequestScope

public Map<String,Object> getRequestScope()
Return a mutable Map that maps request scope attribute names to their values.

Specified by:
getRequestScope in interface TilesRequestContext
Returns:
The request scope map.

getSessionScope

public Map<String,Object> getSessionScope()
Return a mutable Map that maps session scope attribute names to their values.

Specified by:
getSessionScope in interface TilesRequestContext
Returns:
The request scope map.

dispatch

public void dispatch(String path)
              throws IOException
Dispatches the request to a specified path.

Specified by:
dispatch in interface TilesRequestContext
Parameters:
path - The path to dispatch to.
Throws:
IOException - If something goes wrong during dispatching.

include

public void include(String path)
             throws IOException
Includes the response from the specified URL in the current response output.

Specified by:
include in interface TilesRequestContext
Parameters:
path - The path to include.
Throws:
IOException - If something goes wrong during inclusion.

getRequestLocale

public Locale getRequestLocale()
Return the preferred Locale in which the client will accept content.

Specified by:
getRequestLocale in interface TilesRequestContext
Returns:
The current request locale. It is the locale of the request object itself and it is NOT the locale that the user wants to use. See LocaleResolver to implement strategies to resolve locales.

isUserInRole

public boolean isUserInRole(String role)
Determine whether or not the specified user is in the given role.

Specified by:
isUserInRole in interface TilesRequestContext
Parameters:
role - the role to check against.
Returns:
true if the user is in the given role.


Copyright © 2001-2008 Apache Software Foundation. All Rights Reserved.