com.vaadin.flow.server.auth.
Package com.vaadin.flow.server.auth
Interface AccessCheckDecisionResolver
All Superinterfaces:
All Known Implementing Classes:
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Indicates a class that is responsible for taking a decisions about granting
access to a target view, based on the result provided by
NavigationAccessChecker
s.
The component is used by NavigationAccessControl
to compute the final
decision, based on the results of all registered
NavigationAccessChecker
s.
-
Method Summary
Modifier and TypeMethodDescriptionresolve
(List<AccessCheckResult> results, NavigationContext context) Determines if access is granted for a specific navigation context, based on the decisions provided by
NavigationAccessChecker
s.
-
Method Details