Package net.officefloor.web.jwt
Interface JwtHttpSecuritySource.JwtValidateKeysFactory
-
- Enclosing class:
- JwtHttpSecuritySource<C>
- 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 static interface JwtHttpSecuritySource.JwtValidateKeysFactory
Allows overriding the creation ofJwtValidateKey
instances.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JwtValidateKey[]
createJwtValidateKeys()
Obtains theJwtValidateKey
instances to use.
-
-
-
Method Detail
-
createJwtValidateKeys
JwtValidateKey[] createJwtValidateKeys() throws java.lang.Exception
Obtains theJwtValidateKey
instances to use.- Returns:
JwtValidateKey
instances to use.- Throws:
java.lang.Exception
- If fails to create theJwtValidateKey
instances.
-
-