| Package | Description |
|---|---|
| com.holonplatform.auth.jwt |
| Modifier and Type | Method and Description |
|---|---|
static JwtTokenBuilder.AuthPart |
JwtTokenBuilder.AuthPart.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JwtTokenBuilder.AuthPart[] |
JwtTokenBuilder.AuthPart.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
static String |
JwtTokenBuilder.buildJWT(Authentication authentication,
String id,
String issuer,
Long timeToLiveMs,
JwtTokenBuilder.AuthPart... includeParts)
Build a not signed JSON Web Token form given
Authentication |
static String |
JwtTokenBuilder.buildJWT(Authentication authentication,
String id,
String issuer,
Long timeToLiveMs,
io.jsonwebtoken.SignatureAlgorithm algorithm,
byte[] signingKey,
JwtTokenBuilder.AuthPart... includeParts)
Build a JSON Web Token form given
Authentication |
static String |
JwtTokenBuilder.buildJWT(Authentication authentication,
String id,
String issuer,
Long timeToLiveMs,
io.jsonwebtoken.SignatureAlgorithm algorithm,
Key privateKey,
JwtTokenBuilder.AuthPart... includeParts)
Build a JSON Web Token form given
Authentication |
static String |
JwtTokenBuilder.buildJWT(Authentication authentication,
String id,
String issuer,
Long timeToLiveMs,
io.jsonwebtoken.SignatureAlgorithm algorithm,
String base64EncodedKey,
JwtTokenBuilder.AuthPart... includeParts)
Build a JSON Web Token form given
Authentication |
Copyright © 2017 The Holon Platform. All rights reserved.