DelegatingFilterProxy

org.beangle.web.servlet.filter.DelegatingFilterProxy
class DelegatingFilterProxy(delegate: Filter) extends GenericHttpFilter

Proxy for a standard Servlet 5.0 Filter, delegating to a managed bean that implements the Filter interface. Supports a "targetBeanName" filter init-param in web.xml, specifying the name of the target bean in the application context.

Attributes

Graph
Supertypes
trait Initializing
trait Filter
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Concrete methods

override def destroy(): Unit

Attributes

Definition Classes
def doFilter(request: ServletRequest, response: ServletResponse, chain: FilterChain): Unit

Inherited methods

def config: FilterConfig

Attributes

Inherited from:
GenericHttpFilter
protected def filterName: String

Make the name of this filter available to subclasses.

Make the name of this filter available to subclasses.

Attributes

Inherited from:
GenericHttpFilter
override def init(): Unit

do initialization.

do initialization.

Attributes

Definition Classes
GenericHttpFilter -> Initializing
Inherited from:
GenericHttpFilter
override def init(filterConfig: FilterConfig): Unit

Standard way of initializing this filter. Map config parameters onto bean properties of this filter, and invoke subclass initialization.

Standard way of initializing this filter. Map config parameters onto bean properties of this filter, and invoke subclass initialization.

Attributes

Definition Classes
Inherited from:
GenericHttpFilter
def requiredProperties: Set[String]

Set of required properties (Strings) that must be supplied as config parameters to this filter.

Set of required properties (Strings) that must be supplied as config parameters to this filter.

Attributes

Inherited from:
GenericHttpFilter