Package io.jmix.core.security
Interface AuthorizedUrlsProvider
- All Known Implementing Classes:
CustomRestAuthorizedUrlsProvider
,DefaultAuthorizedUrlsProvider
,DefaultRestAuthorizedUrlsProvider
public interface AuthorizedUrlsProvider
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 TypeMethodDescriptionReturns URL patterns that are allowed to anonymous user.Returns URL patterns that are allowed to any authenticated user.
-
Method Details
-
getAuthenticatedUrlPatterns
Collection<String> getAuthenticatedUrlPatterns()Returns URL patterns that are allowed to any authenticated user. -
getAnonymousUrlPatterns
Collection<String> getAnonymousUrlPatterns()Returns URL patterns that are allowed to anonymous user.
-