org.beangle.commons.web

filter

package filter

Visibility
  1. Public
  2. All

Type Members

  1. class AntPathRequestMatcher extends RequestMatcher

    Matcher which compares a pre-defined ant-style pattern against the URL ( servletPath + pathInfo) of an HttpServletRequest.

    Matcher which compares a pre-defined ant-style pattern against the URL ( servletPath + pathInfo) of an HttpServletRequest. The query string of the URL is ignored and matching is case-insensitive.

    See also

    AntPathMatcher

  2. class CharacterEncodingFilter extends GenericHttpFilter

  3. class DelegatingFilterProxy extends GenericHttpFilter with ContainerRefreshedHook

    Proxy for a standard Servlet 2.3 Filter, delegating to a managed bean that implements the Filter interface.

    Proxy for a standard Servlet 2.3 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.

  4. abstract class GenericCompositeFilter extends GenericHttpFilter

  5. abstract class GenericHttpFilter extends Filter with Initializing

  6. class MatchedCompositeFilter extends GenericCompositeFilter

  7. class MockFilter extends Filter

    A simple filter that the test case can delegate to.

  8. abstract class OncePerRequestFilter extends GenericHttpFilter

    Once per request filter.

    Once per request filter.

    Since

    3.0.0

  9. class RegexRequestMatcher extends RequestMatcher

    Uses a regular expression to decide whether a supplied the URL of a supplied HttpServletRequest.

    Uses a regular expression to decide whether a supplied the URL of a supplied HttpServletRequest. Can also be configured to match a specific HTTP method. The match is performed against the servletPath + pathInfo + queryString of the request and is case-sensitive by default. Case-insensitive matching can be used by using the constructor which takes the caseInsentitive argument.

  10. trait RequestMatcher extends AnyRef

    Simple strategy to match an HttpServletRequest.

    Simple strategy to match an HttpServletRequest.

  11. class VirtualFilterChain extends FilterChain

    A FilterChain that records whether or not javax.servlet.ServletResponse) is called.

    A FilterChain that records whether or not javax.servlet.ServletResponse) is called.

Value Members

  1. object MatchedCompositeFilter

Ungrouped