Java FilterConfig interface

FilterConfig object is created and used by the web container to pass init parameters to a filter during initialization. Methods of FilterConfig interface: 1. getFilterName(): Returns the name of the filter defined in web.xml. Syntax: public String getFilterName() 2. getInitParameter(String name): Returns the value of the specified parameter. Syntax: public String getInitParameter(String name) 3. getInitParameterNames(): … Read more