Package io.jmix.core.security
Interface AuthorizedUrlsProvider
- All Known Implementing Classes:
- DefaultAuthorizedUrlsProvider,- GraphQLAuthorizedUrlsProvider,- RestAuthorizedUrlsProvider
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 SummaryModifier and TypeMethodDescriptionReturns URL patterns that are allowed to anonymous user.Returns URL patterns that are allowed to any authenticated user.
- 
Method Details- 
getAuthenticatedUrlPatternsCollection<String> getAuthenticatedUrlPatterns()Returns URL patterns that are allowed to any authenticated user.
- 
getAnonymousUrlPatternsCollection<String> getAnonymousUrlPatterns()Returns URL patterns that are allowed to anonymous user.
 
-