Interface AuthorizedUrlsProvider

All Known Implementing Classes:
CustomRestAuthorizedUrlsProvider

@Deprecated(since="2.4", forRemoval=true) public interface AuthorizedUrlsProvider
Deprecated, for removal: This API element is subject to removal in a future version.
use AuthenticatedUrlPatternsProvider and AnonymousUrlPatternsProvider
Provider used when configuring HTTP web security for API endpoints (like REST, MVC controllers). Specifies lists of authenticated and anonymous URLs.
  • Method Summary

    Modifier and Type
    Method
    Description
    Deprecated, for removal: This API element is subject to removal in a future version.
    Returns URL patterns that are allowed to anonymous user.
    Deprecated, for removal: This API element is subject to removal in a future version.
    Returns URL patterns that are allowed to any authenticated user.
  • Method Details

    • getAuthenticatedUrlPatterns

      Collection<String> getAuthenticatedUrlPatterns()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Returns URL patterns that are allowed to any authenticated user.
    • getAnonymousUrlPatterns

      Collection<String> getAnonymousUrlPatterns()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Returns URL patterns that are allowed to anonymous user.