Java javax.servlet FilterRegistration.Dynamic fields, constructors, methods, implement or subclass

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

Introduction

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

The text is from its open source code.

Implementation

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

Method

voidaddMappingForServletNames(EnumSet dispatcherTypes, boolean isMatchAfter, String... servletNames)
Adds a filter mapping with the given servlet names and dispatcher types for the Filter represented by this FilterRegistration.
voidaddMappingForUrlPatterns(EnumSet dispatcherTypes, boolean isMatchAfter, String... urlPatterns)
Adds a filter mapping with the given url patterns and dispatcher types for the Filter represented by this FilterRegistration.
StringgetName()
Gets the name of the Servlet or Filter that is represented by this Registration.
booleansetInitParameter(String name, String value)
Sets the initialization parameter with the given name and value on the Servlet or Filter that is represented by this Registration.
SetsetInitParameters(Map initParameters)
Sets the given initialization parameters on the Servlet or Filter that is represented by this Registration.