Interface PathConfigProcessor

All Known Implementing Classes:
AccessControlFilter, AnonymousFilter, AuthenticatingFilter, AuthenticationFilter, AuthorizationFilter, BasicHttpAuthenticationFilter, BearerHttpAuthenticationFilter, FormAuthenticationFilter, HostFilter, HttpMethodPermissionFilter, InvalidRequestFilter, IpFilter, NoSessionCreationFilter, PassThruAuthenticationFilter, PathMatchingFilter, PermissionsAuthorizationFilter, PortFilter, RolesAuthorizationFilter, SslFilter, UserFilter

public interface PathConfigProcessor
A PathConfigProcessor processes configuration entries on a per path (url) basis.
Since:
0.9
  • Method Summary

    Modifier and Type
    Method
    Description
    javax.servlet.Filter
    Processes the specified config, unique to the given path, and returns the Filter that should execute for that path/config combination.
  • Method Details

    • processPathConfig

      javax.servlet.Filter processPathConfig(String path, String config)
      Processes the specified config, unique to the given path, and returns the Filter that should execute for that path/config combination.
      Parameters:
      path - the path for which the config should be applied
      config - the configuration for the Filter specific to the given path
      Returns:
      the Filter that should execute for the given path/config combination.