Java org.apache.commons.chain.web.servlet ServletWebContext fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.chain.web.servlet ServletWebContext fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.chain.web.servlet ServletWebContext.

The text is from its open source code.

Subclass

org.apache.commons.chain.web.servlet.ServletWebContext has subclasses.
Click this link to see all its subclasses.

Constructor

ServletWebContext(ServletContext context, HttpServletRequest request, HttpServletResponse response)

Construct a ServletWebContext instance that is initialized with the specified Servlet API objects.

ServletWebContext()

Construct an uninitialized ServletWebContext instance.

Method

Objectget(Object key)

Override the default Map behavior to return the value of a local property if the specified key matches a local property name.

MapgetApplicationScope()
ServletContextgetContext()

Return the ServletContext for this context.

HttpServletRequestgetRequest()

Return the HttpServletRequest for this context.

MapgetRequestScope()
HttpServletResponsegetResponse()

Return the HttpServletResponse for this context.

voidinitialize(ServletContext context, HttpServletRequest request, HttpServletResponse response)

Initialize (or reinitialize) this ServletWebContext instance for the specified Servlet API objects.

Objectput(Object key, Object value)

Override the default Map behavior to set the value of a local property if the specified key matches a local property name.

voidrelease()

Release references to allocated resources acquired in initialize() of via subsequent processing.