Uses of Interface
org.apache.cocoon.environment.Request

Packages that use Request
org.apache.cocoon.acting   
org.apache.cocoon.ajax   
org.apache.cocoon.auth.impl   
org.apache.cocoon.components   
org.apache.cocoon.components.deli   
org.apache.cocoon.components.flow.javascript.fom   
org.apache.cocoon.environment   
org.apache.cocoon.environment.commandline   
org.apache.cocoon.environment.http   
org.apache.cocoon.environment.wrapper   
org.apache.cocoon.generation   
org.apache.cocoon.jxpath   
org.apache.cocoon.mail   
org.apache.cocoon.reading   
org.apache.cocoon.taglib   
org.apache.cocoon.transformation   
org.apache.cocoon.util   
org.apache.cocoon.webapps.authentication.configuration   
org.apache.cocoon.webapps.session.components   
org.apache.cocoon.webapps.session.context   
 

Uses of Request in org.apache.cocoon.acting
 

Methods in org.apache.cocoon.acting with parameters of type Request
protected  Object AbstractDatabaseAction.getColumn(ResultSet set, Request request, Configuration entry)
          Get the Statement column so that the results are mapped correctly.
protected  Object AbstractDatabaseAction.getRequestAttribute(Request request, String key)
          Retreive a value from the request attributes.
protected  void AbstractDatabaseAction.setColumn(PreparedStatement statement, int position, Request request, Configuration entry)
          Set the Statement column so that the results are mapped correctly.
protected  void AbstractDatabaseAction.setColumn(PreparedStatement statement, int position, Request request, Configuration entry, String param)
          Set the Statement column so that the results are mapped correctly.
protected  void AbstractDatabaseAction.setColumn(PreparedStatement statement, int position, Request request, Configuration entry, String param, Object value)
          Set the Statement column so that the results are mapped correctly.
protected  void AbstractDatabaseAction.setColumn(PreparedStatement statement, int position, Request request, Configuration entry, String param, Object value, int rowIndex)
          Set the Statement column so that the results are mapped correctly.
protected  void AbstractDatabaseAction.setRequestAttribute(Request request, String key, Object value)
          Store a key/value pair in the request attributes.
 

Uses of Request in org.apache.cocoon.ajax
 

Methods in org.apache.cocoon.ajax with parameters of type Request
static boolean AjaxHelper.isAjaxRequest(Request req)
          Is the request an Ajax request?
 

Uses of Request in org.apache.cocoon.auth.impl
 

Methods in org.apache.cocoon.auth.impl with parameters of type Request
protected  User ServletSecurityHandler.createUser(Request req)
          Create a new user.
 

Constructors in org.apache.cocoon.auth.impl with parameters of type Request
ServletSecurityHandler.ServletUser(Request req)
          Instantiate a new user.
 

Uses of Request in org.apache.cocoon.components
 

Methods in org.apache.cocoon.components that return Request
static Request ContextHelper.getRequest(Context context)
          Return the current request
 

Methods in org.apache.cocoon.components with parameters of type Request
static void SourceRepository.save(Request request, String dirName)
           
static void Repository.save(Request request, String dirName)
           
static void SourceRepository.save(Request request, String param, String dest)
           
static void Repository.save(Request request, String param, String file)
           
 

Uses of Request in org.apache.cocoon.components.deli
 

Methods in org.apache.cocoon.components.deli with parameters of type Request
 com.hp.hpl.deli.Profile DeliImpl.getProfile(Request theRequest)
          Process a HttpServletRequest and either extract CC/PP or UAProf information from it and use this information to resolve a profile or examine the user agent string, match this using the DELI legacy device database, and use this information to retrieve the appropriate CC/PP profile.
 com.hp.hpl.deli.Profile Deli.getProfile(Request theRequest)
           
 Document DeliImpl.getUACapabilities(Request theRequest)
           
 Document Deli.getUACapabilities(Request theRequest)
          Convert a profile stored as a vector of profile attributes to a DOM tree.
 

Constructors in org.apache.cocoon.components.deli with parameters of type Request
DeliImpl.CocoonServletRequest(Request request)
           
 

Uses of Request in org.apache.cocoon.components.flow.javascript.fom
 

Methods in org.apache.cocoon.components.flow.javascript.fom that return Request
 Request FOM_Cocoon.getRequest()
          Get the current request
 

Constructors in org.apache.cocoon.components.flow.javascript.fom with parameters of type Request
FOM_Cocoon.FOM_Request(org.mozilla.javascript.Scriptable scope, Request request)
           
 

Uses of Request in org.apache.cocoon.environment
 

Methods in org.apache.cocoon.environment that return Request
static Request ObjectModelHelper.getRequest(Map objectModel)
           
 

Methods in org.apache.cocoon.environment with parameters of type Request
protected static String AbstractEnvironment.extractAction(Request req)
          Helper method to extract the action name from the request.
protected static String AbstractEnvironment.extractView(Request request)
          Helper method to extract the view name from the request.
 

Uses of Request in org.apache.cocoon.environment.commandline
 

Classes in org.apache.cocoon.environment.commandline that implement Request
 class CommandLineRequest
          Creates a specific servlet request simulation from command line usage.
 

Uses of Request in org.apache.cocoon.environment.http
 

Classes in org.apache.cocoon.environment.http that implement Request
 class HttpRequest
          Implements the Request interface to provide request information in the HTTP servlets environment.
 

Uses of Request in org.apache.cocoon.environment.wrapper
 

Classes in org.apache.cocoon.environment.wrapper that implement Request
 class RequestWrapper
          This is a wrapper class for the Request object.
 

Fields in org.apache.cocoon.environment.wrapper declared as Request
protected  Request EnvironmentWrapper.request
          The request object
 

Constructors in org.apache.cocoon.environment.wrapper with parameters of type Request
RequestWrapper(Request request, String requestURI, String queryString, Environment env)
          Constructor
RequestWrapper(Request request, String requestURI, String queryString, Environment env, boolean rawMode)
          Constructor
 

Uses of Request in org.apache.cocoon.generation
 

Fields in org.apache.cocoon.generation declared as Request
protected  Request ServletGenerator.request
           
 

Methods in org.apache.cocoon.generation with parameters of type Request
 String StreamGenerator.getCharacterEncoding(Request req, String contentType)
          Content type HTTP header can contains character encodinf info for ex.
 boolean AbstractServerPage.hasContentChanged(Request request)
          Determines whether generated content has changed since last invocation.
 

Constructors in org.apache.cocoon.generation with parameters of type Request
VelocityGenerator.ChainedContext(org.apache.velocity.context.Context ctx, Request request, Response response, Context application, Parameters parameters)
          Default constructor.
 

Uses of Request in org.apache.cocoon.jxpath
 

Classes in org.apache.cocoon.jxpath that implement Request
static class JXPathCocoonContexts.RequestProxy
           
 

Constructors in org.apache.cocoon.jxpath with parameters of type Request
JXPathCocoonContexts.RequestProxy(Request delegate)
           
 

Uses of Request in org.apache.cocoon.mail
 

Methods in org.apache.cocoon.mail with parameters of type Request
protected  void MailAction.populateRequestAttribute(Request request, MailContext mailContext)
          Populate request attribute map.
protected  void MailAction.putXMLizerToRequestAttribute(Request request, Iterator resultIterator)
          Put XMLizable javamail objects into request attribute map
 void MailContext.setRequest(Request request)
          Sets the request attribute of the MailContext object
 

Uses of Request in org.apache.cocoon.reading
 

Fields in org.apache.cocoon.reading declared as Request
protected  Request ResourceReader.request
           
 

Methods in org.apache.cocoon.reading with parameters of type Request
protected  boolean DatabaseReader.modifiedSince(ResultSet set, Request request, Response response)
          Tests whether a resource has been modified or not.
 

Uses of Request in org.apache.cocoon.taglib
 

Methods in org.apache.cocoon.taglib that return Request
protected  Request VarTagSupport.getRequest()
           
 

Uses of Request in org.apache.cocoon.transformation
 

Fields in org.apache.cocoon.transformation declared as Request
protected  Request AbstractSAXTransformer.request
          The current Request object
protected  Request AugmentTransformer.request
           
 

Uses of Request in org.apache.cocoon.util
 

Methods in org.apache.cocoon.util with parameters of type Request
static SourceParameters NetUtils.createParameters(Request request)
          Create new SourceParameters with the same parameters as the current request
 

Uses of Request in org.apache.cocoon.webapps.authentication.configuration
 

Methods in org.apache.cocoon.webapps.authentication.configuration with parameters of type Request
 void HandlerConfiguration.configure(Request request, Configuration conf)
          Deprecated. Configure
 

Uses of Request in org.apache.cocoon.webapps.session.components
 

Fields in org.apache.cocoon.webapps.session.components declared as Request
protected  Request AbstractSessionComponent.request
          Deprecated.  
 

Uses of Request in org.apache.cocoon.webapps.session.context
 

Methods in org.apache.cocoon.webapps.session.context that return Request
 Request RequestSessionContext.getRequest()
          Deprecated. Get the request object
 



Copyright ? 1999-2007 The Apache Software Foundation. All Rights Reserved.