public interface

LinkedFilterBinding

com.google.inject.servlet.LinkedFilterBinding

Class Overview

A linked binding to a filter.

Summary

Public Methods
abstract Map<String, String> getInitParams()
Returns any init params supplied when creating the binding.
abstract Key<? extends Filter> getLinkedKey()
Returns the key used to lookup the filter instance.
abstract String getPattern()
Returns the pattern used to match against the filter.
abstract UriPatternType getUriPatternType()
Returns the pattern type that this filter binding was created with.

Public Methods

public abstract Map<String, String> getInitParams ()

Returns any init params supplied when creating the binding.

public abstract Key<? extends Filter> getLinkedKey ()

Returns the key used to lookup the filter instance.

public abstract String getPattern ()

Returns the pattern used to match against the filter.

public abstract UriPatternType getUriPatternType ()

Returns the pattern type that this filter binding was created with. This will be REGEX if the binding was created with ServletModule#filterRegex(String, String...), and SERVLET if it was created with ServletModule#filter(String, String...).