Uses of Interface
org.apache.wicket.request.IRequestHandler

Packages that use IRequestHandler
org.apache.wicket.request Package for classes that have generic (protocol independent) support for request cycle processing. 
org.apache.wicket.request.flow   
org.apache.wicket.request.handler   
org.apache.wicket.request.http.handler   
org.apache.wicket.request.mapper   
org.apache.wicket.request.mapper.mount   
 

Uses of IRequestHandler in org.apache.wicket.request
 

Subinterfaces of IRequestHandler in org.apache.wicket.request
 interface ILoggableRequestHandler
          A loggable request handler is a IRequestHandler that is capable of delivering log data.
 interface IRequestHandlerDelegate
          A IRequestHandler that delegates the actual work to another IRequestHandler.
 

Methods in org.apache.wicket.request that return IRequestHandler
 IRequestHandler RequestHandlerStack.getActive()
           
 IRequestHandler IRequestHandlerDelegate.getDelegateHandler()
           
 IRequestHandler IExceptionMapper.map(Exception e)
           
 IRequestHandler IRequestMapper.mapRequest(Request request)
          Returns IRequestHandler for the request or null if the Url is not recognized.
 IRequestHandler RequestHandlerStack.next()
           
 IRequestHandler RequestHandlerStack.resolveHandler(RuntimeException exception)
          Certain exceptions can carry a request handler they wish to be executed, this method tries to resolve such a handler given an exception.
 

Methods in org.apache.wicket.request with parameters of type IRequestHandler
protected abstract  void RequestHandlerStack.detach(IRequestHandler handler)
          Allows the request handler to detach
 void RequestHandlerStack.execute(IRequestHandler handler)
           
 Url IRequestMapper.mapHandler(IRequestHandler requestHandler)
          Returns the Url for given IRequestHandler or null if the request handler is not recognized.
 void RequestHandlerStack.replaceAll(IRequestHandler handler)
          Replaces all request handlers on the stack with the specified one and executes it.
protected abstract  void RequestHandlerStack.respond(IRequestHandler handler)
          Allows the request handler to respond to the request
 void RequestHandlerStack.schedule(IRequestHandler handler)
          Schedules the handler after the current one
 void IRequestCycle.scheduleRequestHandlerAfterCurrent(IRequestHandler handler)
          Schedule the request handler to be executed after the current one.
 

Constructors in org.apache.wicket.request with parameters of type IRequestHandler
RequestHandlerStack.ReplaceHandlerException(IRequestHandler replacementRequestHandler, boolean removeAll)
          Construct.
 

Uses of IRequestHandler in org.apache.wicket.request.flow
 

Constructors in org.apache.wicket.request.flow with parameters of type IRequestHandler
ResetResponseException(IRequestHandler handler)
          Construct.
 

Uses of IRequestHandler in org.apache.wicket.request.handler
 

Classes in org.apache.wicket.request.handler that implement IRequestHandler
 class EmptyRequestHandler
          Request handler that performs no work
 class TextRequestHandler
          Request target that responds by sending its string property.
 

Uses of IRequestHandler in org.apache.wicket.request.http.handler
 

Classes in org.apache.wicket.request.http.handler that implement IRequestHandler
 class ErrorCodeRequestHandler
          Response target that is to be used in a servlet environment to send an error code and optionally a message.
 class RedirectRequestHandler
          A request handler that redirects to the given url.
 

Uses of IRequestHandler in org.apache.wicket.request.mapper
 

Methods in org.apache.wicket.request.mapper that return IRequestHandler
 IRequestHandler CompoundRequestMapper.mapRequest(Request request)
          Searches the registered IRequestMappers to find one that can map the Request.
 IRequestHandler ParentPathReferenceRewriter.mapRequest(Request request)
           
 

Methods in org.apache.wicket.request.mapper with parameters of type IRequestHandler
 Url CompoundRequestMapper.mapHandler(IRequestHandler handler)
          Searches the registered IRequestMappers to find one that can map the IRequestHandler.
 Url ParentPathReferenceRewriter.mapHandler(IRequestHandler requestHandler)
          Returns the Url for given IRequestHandler or null if the request handler is not recognized.
 

Uses of IRequestHandler in org.apache.wicket.request.mapper.mount
 

Methods in org.apache.wicket.request.mapper.mount that return IRequestHandler
 IRequestHandler MountMapper.mapRequest(Request request)
           
 IRequestHandler IMountedRequestMapper.mapRequest(Request request, MountParameters mountParams)
          Returns IRequestHandler for the request or null if the encoder does not recognize the URL.
 

Methods in org.apache.wicket.request.mapper.mount with parameters of type IRequestHandler
 Url MountMapper.mapHandler(IRequestHandler handler)
           
 Mount IMountedRequestMapper.mapHandler(IRequestHandler requestHandler)
          Returns the Mount for given IRequestHandler or null if the encoder does not recognize the request handler.
 

Constructors in org.apache.wicket.request.mapper.mount with parameters of type IRequestHandler
MountMapper(String mountPath, IRequestHandler handler)
          Construct.
 



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