Uses of Interface
com.arsdigita.dispatcher.RequestContext

Packages that use RequestContext
com.arsdigita.bebop.demo Example A set of examples that demonstrate how Bebop is used. 
com.arsdigita.bebop.page   
com.arsdigita.dispatcher System for dynamically handling the control of HTTP requests. 
com.arsdigita.kernel Provides the classes that are essential for building a CCM web application, including ACSObject, packages, parties, and permissions. 
com.arsdigita.sitenode Deprecated. Use the com.arsdigita.web package instead. 
com.arsdigita.ui.login Internationalized UI classes for user login and registration. 
com.arsdigita.ui.permissions Default implementation of the CCM permissions UI. 
com.arsdigita.ui.sitemap User interface for dynamically updating URL to application mappings. 
com.arsdigita.webdevsupport A web-based user interface for developer support information generated by DeveloperSupport
 

Uses of RequestContext in com.arsdigita.bebop.demo
 

Methods in com.arsdigita.bebop.demo with parameters of type RequestContext
 void BebopDispatcher.dispatch(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp, RequestContext ctx)
           
 

Uses of RequestContext in com.arsdigita.bebop.page
 

Methods in com.arsdigita.bebop.page with parameters of type RequestContext
 void PageDispatcher.dispatch(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp, RequestContext ctx)
          Serves the Bebop page using the specified PresentationManager.
 

Uses of RequestContext in com.arsdigita.dispatcher
 

Classes in com.arsdigita.dispatcher that implement RequestContext
 class InitialRequestContext
          Implements a request context for the site map application or for any application dispatcher that creates the first application context for an incoming request.
 

Methods in com.arsdigita.dispatcher that return RequestContext
protected  RequestContext JSPApplicationDispatcher.authenticateUser(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp, RequestContext ctx)
           
static RequestContext DispatcherHelper.getRequestContext(javax.servlet.http.HttpServletRequest req)
          Gets the application context from the request attributes.
static RequestContext DispatcherHelper.getRequestContext()
           
protected abstract  RequestContext BaseDispatcherServlet.authenticateUser(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp, RequestContext ctx)
          A placeholder method for performing user authentication during request processing.
 RequestContext RequestEvent.getRequestContext()
          Returns the current request context for the request event.
 

Methods in com.arsdigita.dispatcher with parameters of type RequestContext
protected  RequestContext JSPApplicationDispatcher.authenticateUser(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp, RequestContext ctx)
           
 void JSPApplicationDispatcher.dispatch(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp, RequestContext actx)
           
static void DispatcherHelper.setRequestContext(javax.servlet.http.HttpServletRequest req, RequestContext ac)
          Sets the current request context as a request attribute for later retrieval.
static String DispatcherHelper.resolveAbstractFile(File abstractFile, RequestContext actx)
          Deprecated. abstract URLs are no longer supported. Use extensions when your file on disk has an extension.
 void DispatcherChain.dispatch(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp, RequestContext ctx)
          Dispatches to the dispatcher chain.
 int ChainedDispatcher.chainedDispatch(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, RequestContext actx)
          Dispatch this request and return a status code if successful.
protected abstract  RequestContext BaseDispatcherServlet.authenticateUser(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp, RequestContext ctx)
          A placeholder method for performing user authentication during request processing.
 void MapDispatcher.dispatch(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp, RequestContext ctx)
          Looks up a target in the page map based on the remaining URL.
protected  void MapDispatcher.preprocessRequest(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp, RequestContext ctx, String url)
          Provides the opportunity for subclasses to do some preprocessing of a given url, before it is handed off to the main dispatcher.
 void Dispatcher.dispatch(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, RequestContext actx)
          Dispatches this request.
 

Constructors in com.arsdigita.dispatcher with parameters of type RequestContext
InitialRequestContext(RequestContext that)
          Copy constructor.
RequestEvent(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp, RequestContext ctx, boolean start, boolean finishedNormal)
          Creates a new RequestEvent with a success/failure status code.
RequestEvent(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp, RequestContext ctx, boolean start)
          Creates a new RequestEvent with no status code.
 

Uses of RequestContext in com.arsdigita.kernel
 

Classes in com.arsdigita.kernel that implement RequestContext
 class KernelRequestContext
           
 

Methods in com.arsdigita.kernel that return RequestContext
protected  RequestContext KernelDispatcherServlet.authenticateUser(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res, RequestContext ctx)
           
 

Methods in com.arsdigita.kernel with parameters of type RequestContext
protected  RequestContext KernelDispatcherServlet.authenticateUser(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res, RequestContext ctx)
           
 

Constructors in com.arsdigita.kernel with parameters of type RequestContext
KernelRequestContext(RequestContext parent, SessionContext session, UserContext user)
           
 

Uses of RequestContext in com.arsdigita.sitenode
 

Classes in com.arsdigita.sitenode that implement RequestContext
 class SiteNodeRequestContext
          Deprecated. Use WebContext instead.
 

Methods in com.arsdigita.sitenode with parameters of type RequestContext
 void SiteNodeDispatcher.dispatch(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp, RequestContext rc)
          Deprecated. Resolves the URL to a particular package instance, using the site_nodes table in the database, and passes control to the individual package.
 

Constructors in com.arsdigita.sitenode with parameters of type RequestContext
SiteNodeRequestContext(javax.servlet.http.HttpServletRequest req, RequestContext parent, SiteNode sn, String pathPrefix)
          Deprecated. Build a new application context given an original app context, and a destination site node.
 

Uses of RequestContext in com.arsdigita.ui.login
 

Methods in com.arsdigita.ui.login with parameters of type RequestContext
protected  void SubsiteDispatcher.preprocessRequest(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp, RequestContext ctx, String url)
           
 

Uses of RequestContext in com.arsdigita.ui.permissions
 

Methods in com.arsdigita.ui.permissions with parameters of type RequestContext
protected  void PermissionsDispatcher.preprocessRequest(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp, RequestContext ctx, String url)
           
 

Uses of RequestContext in com.arsdigita.ui.sitemap
 

Methods in com.arsdigita.ui.sitemap with parameters of type RequestContext
 void SiteMapDispatcher.dispatch(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp, RequestContext ctx)
           
 

Uses of RequestContext in com.arsdigita.webdevsupport
 

Methods in com.arsdigita.webdevsupport with parameters of type RequestContext
 void QueryLog.dispatch(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp, RequestContext ctx)
           
 void Dispatcher.dispatch(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse resp, RequestContext ctx)
           
 



Copyright (c) 2004 Red Hat, Inc. Corporation. All Rights Reserved. Generated at July 20 2004:2337 UTC