|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface TilesRequestContext
Encapsulation of request information.
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). |
Object |
getRequest()
Get the underlying request. |
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. |
Object |
getResponse()
Get the underlying response. |
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. |
boolean |
isUserInRole(String role)
Determine whether or not the specified user is in the given role. |
Method Detail |
---|
Map<String,String> getHeader()
Map<String,String[]> getHeaderValues()
Map<String,Object> getRequestScope()
Map<String,Object> getSessionScope()
void dispatch(String path) throws IOException
path
- The path to dispatch to.
IOException
- If something goes wrong during dispatching.void include(String path) throws IOException
path
- The path to include.
IOException
- If something goes wrong during inclusion.Map<String,String> getParam()
Map<String,String[]> getParamValues()
Locale getRequestLocale()
LocaleResolver
to implement strategies to
resolve locales.boolean isUserInRole(String role)
role
- the role to check against.
true
if the user is in the given role.Object getRequest()
Object getResponse()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |