Uses of Interface
org.apache.tiles.request.Request

Packages that use Request
org.apache.tiles.request This package defines the concept of "request" as the event causing a document to be generated from a template. 
org.apache.tiles.request.freemarker Support for Freemarker's Environment as a request. 
org.apache.tiles.request.freemarker.autotag Runtime part of Autotag support for Freemarker. 
org.apache.tiles.request.freemarker.render Rendering of Freemarker templates. 
org.apache.tiles.request.jsp Support of Tiles request in a JSP environment. 
org.apache.tiles.request.jsp.autotag Runtime part of Autotag support for JavaServer pages. 
org.apache.tiles.request.mustache Support of Tiles request for Mustache. 
org.apache.tiles.request.portlet Support of Tiles requests to portlets. 
org.apache.tiles.request.render Classes to allow rendering of a template (described by its path) in a uniform way. 
org.apache.tiles.request.servlet Tiles request support for Servlet technology. 
org.apache.tiles.request.velocity Tiles request support for Velocity. 
org.apache.tiles.request.velocity.autotag Runtime part of Autotag support for Velocity. 
org.apache.tiles.request.velocity.render Renderering support for Velocity. 
 

Uses of Request in org.apache.tiles.request
 

Subinterfaces of Request in org.apache.tiles.request
 interface DispatchRequest
          Encapsulation of request information.
 interface RequestWrapper
          Delegate for ease of customization.
 

Classes in org.apache.tiles.request that implement Request
 class AbstractClientRequest
          Base class for "client" requests, i.e.
 class AbstractRequest
          Base request.
 class AbstractViewRequest
          Base class for "view" requests, i.e.
 class DefaultRequestWrapper
          Delegate for ease of customization.
 class DispatchRequestWrapper
          Deprecated. prefer RequestWrapper which is more general in purpose, unless you want to override dispatch() or include().
 

Methods in org.apache.tiles.request that return Request
 Request RequestWrapper.getWrappedRequest()
          Returns the wrapped Tiles request.
 Request DefaultRequestWrapper.getWrappedRequest()
          Returns the wrapped Tiles request.
 

Constructors in org.apache.tiles.request with parameters of type Request
DefaultRequestWrapper(Request context)
          Constructor.
 

Uses of Request in org.apache.tiles.request.freemarker
 

Classes in org.apache.tiles.request.freemarker that implement Request
 class FreemarkerRequest
          The FreeMarker-specific request context.
 

Uses of Request in org.apache.tiles.request.freemarker.autotag
 

Methods in org.apache.tiles.request.freemarker.autotag that return Request
 Request FreemarkerAutotagRuntime.createRequest()
          
 

Uses of Request in org.apache.tiles.request.freemarker.render
 

Methods in org.apache.tiles.request.freemarker.render with parameters of type Request
 boolean FreemarkerRenderer.isRenderable(String path, Request request)
          Checks if this renderer can render a path.
 void FreemarkerRenderer.render(String path, Request request)
          Renders a path.
 

Uses of Request in org.apache.tiles.request.jsp
 

Classes in org.apache.tiles.request.jsp that implement Request
 class JspRequest
          Context implementation used for executing tiles within a jsp tag library.
 

Uses of Request in org.apache.tiles.request.jsp.autotag
 

Methods in org.apache.tiles.request.jsp.autotag that return Request
 Request JspAutotagRuntime.createRequest()
          
 

Uses of Request in org.apache.tiles.request.mustache
 

Methods in org.apache.tiles.request.mustache with parameters of type Request
 boolean MustacheRenderer.isRenderable(String path, Request request)
           
 void MustacheRenderer.render(String path, Request request)
           
 

Uses of Request in org.apache.tiles.request.portlet
 

Classes in org.apache.tiles.request.portlet that implement Request
 class ActionPortletRequest
          Portlet request for an ActionRequest.
 class EventPortletRequest
          Portlet request for an EventRequest.
 class PortletRequest
          Portlet-based TilesApplicationContext implementation.
 class RenderPortletRequest
          Portlet request for a RenderRequest.
 class ResourcePortletRequest
          Portlet request for a ResourceRequest.
 

Uses of Request in org.apache.tiles.request.render
 

Methods in org.apache.tiles.request.render with parameters of type Request
 void PublisherRenderer.RendererListener.end(String template, Request request)
          Called after the delegate's render method is called.
 void PublisherRenderer.RendererListener.handleIOException(IOException ex, Request request)
          If the delegate render method throws an IOException it is passed through this.
 boolean StringRenderer.isRenderable(String value, Request request)
          Checks if this renderer can render a path.
 boolean PublisherRenderer.isRenderable(String path, Request request)
           
 boolean Renderer.isRenderable(String path, Request request)
          Checks if this renderer can render a path.
 boolean ChainedDelegateRenderer.isRenderable(String value, Request request)
          Checks if this renderer can render a path.
 boolean DispatchRenderer.isRenderable(String path, Request request)
          Checks if this renderer can render a path.
 void StringRenderer.render(String value, Request request)
          Renders a path.
 void PublisherRenderer.render(String path, Request request)
           
 void Renderer.render(String path, Request request)
          Renders a path.
 void ChainedDelegateRenderer.render(String value, Request request)
           
 void DispatchRenderer.render(String path, Request request)
          Renders a path.
 void PublisherRenderer.RendererListener.start(String template, Request request)
          Called before the delegate's render method is called.
 

Uses of Request in org.apache.tiles.request.servlet
 

Classes in org.apache.tiles.request.servlet that implement Request
 class ServletRequest
          Servlet-based implementation of the TilesApplicationContext interface.
 

Methods in org.apache.tiles.request.servlet with parameters of type Request
static ServletRequest ServletUtil.getServletRequest(Request request)
          Opens a TilesRequestContext until it finds a ServletTilesRequestContext.
 

Uses of Request in org.apache.tiles.request.velocity
 

Classes in org.apache.tiles.request.velocity that implement Request
 class VelocityRequest
          The implementation of the Tiles request context specific for Velocity.
 

Uses of Request in org.apache.tiles.request.velocity.autotag
 

Methods in org.apache.tiles.request.velocity.autotag that return Request
 Request VelocityAutotagRuntime.createRequest()
          
 

Uses of Request in org.apache.tiles.request.velocity.render
 

Methods in org.apache.tiles.request.velocity.render with parameters of type Request
 boolean VelocityRenderer.isRenderable(String path, Request request)
          Checks if this renderer can render a path.
 void VelocityRenderer.render(String path, Request request)
          Renders a path.
 



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