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.dtoMethods in com.authlete.common.dto that return JWSAlg Modifier and Type Method Description JWSAlgService. getAccessTokenSignAlg()Get the signature algorithm of access tokens.JWSAlgClient. getAuthorizationSignAlg()Get the JWSalgalgorithm for signing authorization responses.JWSAlgClient. getBcRequestSignAlg()Get the signature algorithm of the request to the backchannel authentication endpoint.JWSAlgClient. getIdTokenSignAlg()Get the JWSalgalgorithm for signing the ID token issued to this client.JWSAlgStandardIntrospectionRequest. getIntrospectionSignAlg()Get the JWSalgalgorithm for signing the introspection response.JWSAlgClient. getRequestSignAlg()Get the JWSalgalgorithm for signing request objects.JWSAlgClient. getTokenAuthSignAlg()Get the JWSalgalgorithm for signing the JWT used to authenticate the client at the token endpoint.JWSAlgClient. getUserInfoSignAlg()Get the JWSalgalgorithm for signing UserInfo responses.Methods in com.authlete.common.dto with parameters of type JWSAlg Modifier and Type Method Description ServiceService. setAccessTokenSignAlg(JWSAlg alg)Set the signature algorithm of access tokens.ClientClient. setAuthorizationSignAlg(JWSAlg alg)Set the JWSalgalgorithm for signing authorization responses.ClientClient. setBcRequestSignAlg(JWSAlg alg)Set the signature algorithm of the request to the backchannel authentication endpoint.ClientClient. setIdTokenSignAlg(JWSAlg alg)Set the JWSalgalgorithm for signing the ID token issued to this client.StandardIntrospectionRequestStandardIntrospectionRequest. setIntrospectionSignAlg(JWSAlg alg)Set the JWSalgalgorithm for signing the introspection response.ClientClient. setRequestSignAlg(JWSAlg alg)Set the JWSalgalgorithm for signing request objects.ClientClient. setTokenAuthSignAlg(JWSAlg alg)Set the JWSalgalgorithm for signing the JWT used to authenticate the client at the token endpoint.ClientClient. setUserInfoSignAlg(JWSAlg alg)Set the JWSalgalgorithm for signing UserInfo responses.
- 
Uses of JWSAlg in com.authlete.common.typesMethods in com.authlete.common.types that return JWSAlg Modifier and Type Method Description static JWSAlgJWSAlg. getByValue(short value)Find an instance of this enum by a value.static JWSAlgJWSAlg. parse(String alg)ConvertStringtoJWSAlg.static JWSAlg[]JWSAlg. toArray(int bits)static JWSAlgJWSAlg. 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 booleanJWSAlg. isAsymmetric(JWSAlg alg)Check if the given JWS algorithm is an asymmetric one.static booleanJWSAlg. isSymmetric(JWSAlg alg)Check if the given JWS algorithm is a symmetric one.booleanHSM. 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 intJWSAlg. toBits(EnumSet<JWSAlg> set)
 
-