Interface JwtFactory
-
- All Known Implementing Classes:
EncryptedJwtFactory
,SignedJwtFactory
,SignedThenEncryptedJwtFactory
,UnsignedJwtFactory
public interface JwtFactory
AJwtFactory
encapsulates JWT production strategy into a re-usable and testable design.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Promise<Jwt,NoSuchSecretException>
create(Map<String,Object> template)
Produces a newJwt
.
-