Index

A D E G H I N O P R S W 
All Classes and Interfaces|All Packages|Serialized Form

A

ApplicationScopeExtractor - Class in org.apache.tiles.request.jakarta.servlet.extractor
Extract attributes from application scope.
ApplicationScopeExtractor(ServletContext) - Constructor for class org.apache.tiles.request.jakarta.servlet.extractor.ApplicationScopeExtractor
Constructor.

D

doForward(String) - Method in class org.apache.tiles.request.jakarta.servlet.ServletRequest
Forwards to a path.
doInclude(String) - Method in class org.apache.tiles.request.jakarta.servlet.ServletRequest
Includes the content of a resource (servlet, JSP page, HTML file) in the response.

E

ExternalWriterHttpServletResponse - Class in org.apache.tiles.request.jakarta.servlet
Wraps an HTTP response and overrides its print writer.
ExternalWriterHttpServletResponse(HttpServletResponse, PrintWriter) - Constructor for class org.apache.tiles.request.jakarta.servlet.ExternalWriterHttpServletResponse
Constructor.

G

getApplicationContext(ServletContext) - Static method in class org.apache.tiles.request.jakarta.servlet.ServletUtil
Returns the application context getting it from the servlet context.
getApplicationScope() - Method in class org.apache.tiles.request.jakarta.servlet.ServletApplicationContext
Returns the context map from application scope.
getAvailableScopes() - Method in class org.apache.tiles.request.jakarta.servlet.ServletRequest
Returns all available scopes.
getContext() - Method in class org.apache.tiles.request.jakarta.servlet.ServletApplicationContext
Returns the servlet context to use.
getContext(String) - Method in class org.apache.tiles.request.jakarta.servlet.ServletRequest
Returns a context map, given the scope name.
getHeader() - Method in class org.apache.tiles.request.jakarta.servlet.ServletRequest
Return an immutable Map that maps header names to the first (or only) header value (as a String).
getHeaderValues() - Method in class org.apache.tiles.request.jakarta.servlet.ServletRequest
Return an immutable Map that maps header names to the set of all values specified in the request (as a String array).
getInitParams() - Method in class org.apache.tiles.request.jakarta.servlet.ServletApplicationContext
Return an immutable Map that maps context application initialization parameters to their values.
getKeys() - Method in class org.apache.tiles.request.jakarta.servlet.extractor.ApplicationScopeExtractor
The enumeration of the keys of the stored attributes.
getKeys() - Method in class org.apache.tiles.request.jakarta.servlet.extractor.HeaderExtractor
The enumeration of the keys in the stored attributes.
getKeys() - Method in class org.apache.tiles.request.jakarta.servlet.extractor.InitParameterExtractor
The enumeration of the keys in the stored attributes.
getKeys() - Method in class org.apache.tiles.request.jakarta.servlet.extractor.ParameterExtractor
The enumeration of the keys in the stored attributes.
getKeys() - Method in class org.apache.tiles.request.jakarta.servlet.extractor.RequestScopeExtractor
The enumeration of the keys in the stored attributes.
getKeys() - Method in class org.apache.tiles.request.jakarta.servlet.extractor.SessionScopeExtractor
The enumeration of the keys in the stored attributes.
getOutputStream() - Method in class org.apache.tiles.request.jakarta.servlet.ServletRequest
Returns a ServletOutputStream suitable for writing binary data in the response.
getParam() - Method in class org.apache.tiles.request.jakarta.servlet.ServletRequest
Return an immutable Map that maps request parameter names to the first (or only) value (as a String).
getParamValues() - Method in class org.apache.tiles.request.jakarta.servlet.ServletRequest
Return an immutable Map that maps request parameter names to the set of all values (as a String array).
getPrintWriter() - Method in class org.apache.tiles.request.jakarta.servlet.ServletRequest
Returns a PrintWriter object that can send character text to the client.
getRequest() - Method in class org.apache.tiles.request.jakarta.servlet.ServletRequest
Returns the request object to use.
getRequestLocale() - Method in class org.apache.tiles.request.jakarta.servlet.ServletRequest
Returns the preferred Locale that the client will accept content in, based on the Accept-Language header.
getRequestScope() - Method in class org.apache.tiles.request.jakarta.servlet.ServletRequest
Returns the context map from request scope.
getResource(String) - Method in class org.apache.tiles.request.jakarta.servlet.ServletApplicationContext
Return the application resource mapped to the specified path.
getResource(ApplicationResource, Locale) - Method in class org.apache.tiles.request.jakarta.servlet.ServletApplicationContext
Return a localized version of an ApplicationResource.
getResources(String) - Method in class org.apache.tiles.request.jakarta.servlet.ServletApplicationContext
Return the application resources mapped to the specified path.
getResponse() - Method in class org.apache.tiles.request.jakarta.servlet.ServletRequest
Returns the response object to use.
getResponseHeaders() - Method in class org.apache.tiles.request.jakarta.servlet.ServletRequest
Return an add-able object that can be used to write headers to the response.
getServletContext(ApplicationContext) - Static method in class org.apache.tiles.request.jakarta.servlet.ServletUtil
Gets a servlet context from a TilesApplicationContext.
getServletRequest(Request) - Static method in class org.apache.tiles.request.jakarta.servlet.ServletUtil
Opens a TilesRequestContext until it finds a ServletTilesRequestContext.
getSessionScope() - Method in class org.apache.tiles.request.jakarta.servlet.ServletRequest
Returns the context map from session scope.
getValue(String) - Method in class org.apache.tiles.request.jakarta.servlet.extractor.ApplicationScopeExtractor
Returns the value of the attribute with the given key.
getValue(String) - Method in class org.apache.tiles.request.jakarta.servlet.extractor.HeaderExtractor
Returns the value of the attribute with the given key.
getValue(String) - Method in class org.apache.tiles.request.jakarta.servlet.extractor.InitParameterExtractor
Returns the value of the attribute with the given key.
getValue(String) - Method in class org.apache.tiles.request.jakarta.servlet.extractor.ParameterExtractor
Returns the value of the attribute with the given key.
getValue(String) - Method in class org.apache.tiles.request.jakarta.servlet.extractor.RequestScopeExtractor
Returns the value of the attribute with the given key.
getValue(String) - Method in class org.apache.tiles.request.jakarta.servlet.extractor.SessionScopeExtractor
Returns the value of the attribute with the given key.
getValues(String) - Method in class org.apache.tiles.request.jakarta.servlet.extractor.HeaderExtractor
Returns the values stored at the given key.
getWriter() - Method in class org.apache.tiles.request.jakarta.servlet.ExternalWriterHttpServletResponse
Returns the print writer to use, instead of the response's one.
getWriter() - Method in class org.apache.tiles.request.jakarta.servlet.ServletRequest
Returns a Writer object that can send character text to the client.

H

HeaderExtractor - Class in org.apache.tiles.request.jakarta.servlet.extractor
Extract header values from an HTTP request.
HeaderExtractor(HttpServletRequest, HttpServletResponse) - Constructor for class org.apache.tiles.request.jakarta.servlet.extractor.HeaderExtractor
Constructor.

I

InitParameterExtractor - Class in org.apache.tiles.request.jakarta.servlet.extractor
Extract initialization parameters from the servlet context.
InitParameterExtractor(ServletContext) - Constructor for class org.apache.tiles.request.jakarta.servlet.extractor.InitParameterExtractor
Constructor.
isResponseCommitted() - Method in class org.apache.tiles.request.jakarta.servlet.ServletRequest
Returns a boolean indicating if the response has been committed.
isUserInRole(String) - Method in class org.apache.tiles.request.jakarta.servlet.ServletRequest
Returns a boolean indicating whether the authenticated user is included in the specified logical "role".

N

NotAServletEnvironmentException - Exception Class in org.apache.tiles.request.jakarta.servlet
Exception that indicates that a resource could not be used because it is not in a servlet environment.
NotAServletEnvironmentException() - Constructor for exception class org.apache.tiles.request.jakarta.servlet.NotAServletEnvironmentException
Constructor.
NotAServletEnvironmentException(String) - Constructor for exception class org.apache.tiles.request.jakarta.servlet.NotAServletEnvironmentException
Constructor.
NotAServletEnvironmentException(String, Throwable) - Constructor for exception class org.apache.tiles.request.jakarta.servlet.NotAServletEnvironmentException
Constructor.
NotAServletEnvironmentException(Throwable) - Constructor for exception class org.apache.tiles.request.jakarta.servlet.NotAServletEnvironmentException
Constructor.

O

org.apache.tiles.request.jakarta.servlet - package org.apache.tiles.request.jakarta.servlet
Tiles request support for Servlet technology.
org.apache.tiles.request.jakarta.servlet.extractor - package org.apache.tiles.request.jakarta.servlet.extractor
Extractors to get attributes and other info from servlet requests and contexts.

P

ParameterExtractor - Class in org.apache.tiles.request.jakarta.servlet.extractor
Extract parameters from the request.
ParameterExtractor(HttpServletRequest) - Constructor for class org.apache.tiles.request.jakarta.servlet.extractor.ParameterExtractor
Constructor.

R

removeValue(String) - Method in class org.apache.tiles.request.jakarta.servlet.extractor.ApplicationScopeExtractor
Removes an attribute.
removeValue(String) - Method in class org.apache.tiles.request.jakarta.servlet.extractor.RequestScopeExtractor
Removes an attribute.
removeValue(String) - Method in class org.apache.tiles.request.jakarta.servlet.extractor.SessionScopeExtractor
Removes an attribute.
RequestScopeExtractor - Class in org.apache.tiles.request.jakarta.servlet.extractor
Extracts attributes from request scope.
RequestScopeExtractor(HttpServletRequest) - Constructor for class org.apache.tiles.request.jakarta.servlet.extractor.RequestScopeExtractor
Constructor.

S

ServletApplicationContext - Class in org.apache.tiles.request.jakarta.servlet
Servlet-based implementation of the TilesApplicationContext interface.
ServletApplicationContext(ServletContext) - Constructor for class org.apache.tiles.request.jakarta.servlet.ServletApplicationContext
Creates a new instance of ServletTilesApplicationContext.
ServletRequest - Class in org.apache.tiles.request.jakarta.servlet
Servlet-based implementation of the TilesApplicationContext interface.
ServletRequest(ApplicationContext, HttpServletRequest, HttpServletResponse) - Constructor for class org.apache.tiles.request.jakarta.servlet.ServletRequest
Creates a new instance of ServletTilesRequestContext.
ServletUtil - Class in org.apache.tiles.request.jakarta.servlet
Utilities for Tiles request servlet support.
SessionScopeExtractor - Class in org.apache.tiles.request.jakarta.servlet.extractor
Extract attributes from session scope.
SessionScopeExtractor(HttpServletRequest) - Constructor for class org.apache.tiles.request.jakarta.servlet.extractor.SessionScopeExtractor
Constructor.
setContentType(String) - Method in class org.apache.tiles.request.jakarta.servlet.ServletRequest
Sets the content type of the response being sent to the client, if the response has not been committed yet.
setValue(String, Object) - Method in class org.apache.tiles.request.jakarta.servlet.extractor.ApplicationScopeExtractor
Sets a value for the given key.
setValue(String, Object) - Method in class org.apache.tiles.request.jakarta.servlet.extractor.RequestScopeExtractor
Sets a value for the given key.
setValue(String, Object) - Method in class org.apache.tiles.request.jakarta.servlet.extractor.SessionScopeExtractor
Sets a value for the given key.
setValue(String, String) - Method in class org.apache.tiles.request.jakarta.servlet.extractor.HeaderExtractor
Sets a value for the given key.

W

wrapServletException(ServletException, String) - Static method in class org.apache.tiles.request.jakarta.servlet.ServletUtil
Wraps a ServletException to create an IOException with the root cause if present.
A D E G H I N O P R S W 
All Classes and Interfaces|All Packages|Serialized Form