Interface CachePrincipalFactory
-
- 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 CachePrincipalFactory
Factory for creatingPrincipal
instances based on the principal name. The factory is used to create the principal based on the cached principal name.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Principal
create(String principalName)
Create a newPrincipal
instance based on the principal name provided.
-