| Package | Description |
|---|---|
| com.authlete.common.dto |
Requests to and responses from Authlete APIs and some data structures.
|
| com.authlete.common.types |
Enum definitions and lists of pre-defined constants.
|
| Modifier and Type | Method and Description |
|---|---|
JWSAlg |
Service.getAccessTokenSignAlg()
Get the signature algorithm of access tokens.
|
JWSAlg |
Client.getAuthorizationSignAlg()
Get the JWS
alg algorithm for signing authorization responses. |
JWSAlg |
Client.getBcRequestSignAlg()
Get the signature algorithm of the request to the backchannel
authentication endpoint.
|
JWSAlg |
Client.getIdTokenSignAlg()
Get the JWS
alg algorithm for signing the ID token
issued to this client. |
JWSAlg |
Client.getRequestSignAlg()
Get the JWS
alg algorithm for signing request objects. |
JWSAlg |
Client.getTokenAuthSignAlg()
Get the JWS
alg algorithm for signing the JWT used to
authenticate the client at the token endpoint. |
JWSAlg |
Client.getUserInfoSignAlg()
Get the JWS
alg algorithm for signing UserInfo responses. |
| Modifier and Type | Method and Description |
|---|---|
Service |
Service.setAccessTokenSignAlg(JWSAlg alg)
Set the signature algorithm of access tokens.
|
Client |
Client.setAuthorizationSignAlg(JWSAlg alg)
Set the JWS
alg algorithm for signing authorization responses. |
Client |
Client.setBcRequestSignAlg(JWSAlg alg)
Set the signature algorithm of the request to the backchannel
authentication endpoint.
|
Client |
Client.setIdTokenSignAlg(JWSAlg alg)
Set the JWS
alg algorithm for signing the ID token
issued to this client. |
Client |
Client.setRequestSignAlg(JWSAlg alg)
Set the JWS
alg algorithm for signing request objects. |
Client |
Client.setTokenAuthSignAlg(JWSAlg alg)
Set the JWS
alg algorithm for signing the JWT used to
authenticate the client at the token endpoint. |
Client |
Client.setUserInfoSignAlg(JWSAlg alg)
Set the JWS
alg algorithm for signing UserInfo responses. |
| Modifier and Type | Method and Description |
|---|---|
static JWSAlg |
JWSAlg.getByValue(short value)
Find an instance of this enum by a value.
|
static JWSAlg |
JWSAlg.parse(String alg)
Convert
String to JWSAlg. |
static JWSAlg[] |
JWSAlg.toArray(int bits) |
static JWSAlg |
JWSAlg.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JWSAlg[] |
JWSAlg.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
static EnumSet<JWSAlg> |
JWSAlg.toSet(int bits) |
static EnumSet<JWSAlg> |
JWSAlg.toSet(JWSAlg[] array) |
| Modifier and Type | Method and Description |
|---|---|
static boolean |
JWSAlg.isAsymmetric(JWSAlg alg)
Check if the given JWS algorithm is an asymmetric one.
|
static boolean |
JWSAlg.isSymmetric(JWSAlg alg)
Check if the given JWS algorithm is a symmetric one.
|
static EnumSet<JWSAlg> |
JWSAlg.toSet(JWSAlg[] array) |
| Modifier and Type | Method and Description |
|---|---|
static int |
JWSAlg.toBits(EnumSet<JWSAlg> set) |
Copyright © 2019. All rights reserved.