Uses of Class
com.authlete.common.types.JWSAlg
-
Packages that use JWSAlg 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. -
-
Uses of JWSAlg in com.authlete.common.dto
Methods in com.authlete.common.dto that return JWSAlg Modifier and Type Method Description JWSAlg
Service. getAccessTokenSignAlg()
Get the signature algorithm of access tokens.JWSAlg
Client. getAuthorizationSignAlg()
Get the JWSalg
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 JWSalg
algorithm for signing the ID token issued to this client.JWSAlg
StandardIntrospectionRequest. getIntrospectionSignAlg()
Get the JWSalg
algorithm for signing the introspection response.JWSAlg
Client. getRequestSignAlg()
Get the JWSalg
algorithm for signing request objects.JWSAlg
Client. getTokenAuthSignAlg()
Get the JWSalg
algorithm for signing the JWT used to authenticate the client at the token endpoint.JWSAlg
Client. getUserInfoSignAlg()
Get the JWSalg
algorithm for signing UserInfo responses.Methods in com.authlete.common.dto with parameters of type JWSAlg Modifier and Type Method Description Service
Service. setAccessTokenSignAlg(JWSAlg alg)
Set the signature algorithm of access tokens.Client
Client. setAuthorizationSignAlg(JWSAlg alg)
Set the JWSalg
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 JWSalg
algorithm for signing the ID token issued to this client.StandardIntrospectionRequest
StandardIntrospectionRequest. setIntrospectionSignAlg(JWSAlg alg)
Set the JWSalg
algorithm for signing the introspection response.Client
Client. setRequestSignAlg(JWSAlg alg)
Set the JWSalg
algorithm for signing request objects.Client
Client. setTokenAuthSignAlg(JWSAlg alg)
Set the JWSalg
algorithm for signing the JWT used to authenticate the client at the token endpoint.Client
Client. setUserInfoSignAlg(JWSAlg alg)
Set the JWSalg
algorithm for signing UserInfo responses. -
Uses of JWSAlg in com.authlete.common.types
Methods in com.authlete.common.types that return JWSAlg Modifier and Type Method Description static JWSAlg
JWSAlg. getByValue(short value)
Find an instance of this enum by a value.static JWSAlg
JWSAlg. parse(String alg)
ConvertString
toJWSAlg
.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.Methods in com.authlete.common.types that return types with arguments of type JWSAlg Modifier and Type Method Description static EnumSet<JWSAlg>
JWSAlg. toSet(int bits)
static EnumSet<JWSAlg>
JWSAlg. toSet(JWSAlg[] array)
Methods in com.authlete.common.types with parameters of type JWSAlg Modifier and Type Method 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.boolean
HSM. supportsJwsAlg(JWSAlg alg)
Check if the HSM supports the specified signing algorithm.static EnumSet<JWSAlg>
JWSAlg. toSet(JWSAlg[] array)
Method parameters in com.authlete.common.types with type arguments of type JWSAlg Modifier and Type Method Description static int
JWSAlg. toBits(EnumSet<JWSAlg> set)
-