Package org.apereo.cas.authentication
Interface AuthenticationPolicyResolver
- All Superinterfaces:
org.springframework.core.Ordered
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface
public interface AuthenticationPolicyResolver
extends org.springframework.core.Ordered
This is
AuthenticationPolicyResolver.- Since:
- 6.2.0
-
Field Summary
Fields inherited from interface org.springframework.core.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE -
Method Summary
Modifier and TypeMethodDescriptiondefault intgetOrder()resolve(AuthenticationTransaction transaction) Resolve set of authentication handlers.default booleansupports(AuthenticationTransaction transaction) Supports this transaction?
-
Method Details
-
resolve
Resolve set of authentication handlers.- Parameters:
transaction- the transaction- Returns:
- the set
- Throws:
Throwable
-
getOrder
default int getOrder()- Specified by:
getOrderin interfaceorg.springframework.core.Ordered
-
supports
Supports this transaction?- Parameters:
transaction- the transaction- Returns:
- true/false
- Throws:
Throwable
-