Java javax.servlet FilterConfig fields, constructors, methods, implement or subclass

Example usage for Java javax.servlet FilterConfig fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.servlet FilterConfig.

The text is from its open source code.

Implementation

javax.servlet.FilterConfig has the following implementations.
Click this link to see all its implementation.

Constructor

Method

StringgetFilterName()
Returns the filter-name of this filter as defined in the deployment descriptor.
StringgetInitParameter(String name)
Returns a String containing the value of the named initialization parameter, or null if the initialization parameter does not exist.
EnumerationgetInitParameterNames()
Returns the names of the filter's initialization parameters as an Enumeration of String objects, or an empty Enumeration if the filter has no initialization parameters.
ServletContextgetServletContext()
Returns a reference to the ServletContext in which the caller is executing.