Interface CacheLoader
-
- 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 CacheLoader
Responsible for providing the set of principals for a given user. The implementation is expected to read the group membership from the repository and return the set of group principals.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Set<Principal>
load(Tree authorizableTree)
Gets the set of principals for the given authorizable tree.
-