Package org.apache.tiles.request

Package class diagram package org.apache.tiles.request
This package defines the concept of "request" as the event causing a document to be generated from a template.

See:
          Description

Interface Summary
ApplicationContext Defines a set of methods which tiles use to communicate to the tiles container and runtime environment.
ApplicationContextAware It represents an object that can have a reference to the ApplicationContext.
ApplicationResource A (localized) resource accessible through the ApplicationContext.
DispatchRequest Encapsulation of request information.
Request Encapsulation of request information.
RequestWrapper Delegate for ease of customization.
 

Class Summary
AbstractClientRequest Base class for "client" requests, i.e.
AbstractRequest Base request.
AbstractViewRequest Base class for "view" requests, i.e.
ApplicationAccess Entry point to get information about the application.
ApplicationContextWrapper Delegate for ease of customization.
DefaultRequestWrapper Delegate for ease of customization.
DispatchRequestWrapper Deprecated. prefer RequestWrapper which is more general in purpose, unless you want to override dispatch() or include().
 

Exception Summary
NotAvailableFeatureException Exception that indicates that a feature could not be used since it is not available.
RequestException Thrown when something related to a request fails.
 

Package org.apache.tiles.request Description

This package defines the concept of "request" as the event causing a document to be generated from a template. The process is also called "rendering the template". Typical examples are servlet requests or portlet requests. This API is independent of the underlying technology, allowing the user to deal with similarities in servlets and portlets, or various template technologies, in a uniform way. It is based on 3 main interfaces: