Uses of Class
com.authlete.common.types.JWEAlg
-
Packages that use JWEAlg 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.com.authlete.common.util Utility classes. -
-
Uses of JWEAlg in com.authlete.common.dto
Methods in com.authlete.common.dto that return JWEAlg Modifier and Type Method Description JWEAlgClient. getAuthorizationEncryptionAlg()Get the JWEalgalgorithm for encrypting authorization responses.JWEAlg[]CredentialIssuerMetadata. getCredentialResponseEncryptionAlgValuesSupported()Get the supported JWEalgalgorithms for credential response encryption.JWEAlgClient. getIdTokenEncryptionAlg()Get the JWEalgalgorithm for encrypting the ID token issued to this client.JWEAlgStandardIntrospectionRequest. getIntrospectionEncryptionAlg()Get the JWEalgalgorithm for encrypting the introspection response.JWEAlgClient. getRequestEncryptionAlg()Get the JWEalgalgorithm for encrypting request objects.JWEAlgClient. getUserInfoEncryptionAlg()Get the JWEalgalgorithm for encrypting UserInfo responses.Methods in com.authlete.common.dto with parameters of type JWEAlg Modifier and Type Method Description ClientClient. setAuthorizationEncryptionAlg(JWEAlg alg)Set the JWEalgalgorithm for encrypting authorization responses.CredentialIssuerMetadataCredentialIssuerMetadata. setCredentialResponseEncryptionAlgValuesSupported(JWEAlg[] algs)Set the supported JWEalgalgorithms for credential response encryption.ClientClient. setIdTokenEncryptionAlg(JWEAlg alg)Set the JWEalgalgorithm for encrypting the ID token issued to this client.StandardIntrospectionRequestStandardIntrospectionRequest. setIntrospectionEncryptionAlg(JWEAlg alg)Set the JWEalgalgorithm for encrypting the introspection response.ClientClient. setRequestEncryptionAlg(JWEAlg alg)Set the JWEalgalgorithm for encrypting request objects.ClientClient. setUserInfoEncryptionAlg(JWEAlg alg)Set the JWEalgalgorithm for encrypting UserInfo responses. -
Uses of JWEAlg in com.authlete.common.types
Methods in com.authlete.common.types that return JWEAlg Modifier and Type Method Description static JWEAlgJWEAlg. getByValue(short value)Find an instance of this enum by a value.static JWEAlgJWEAlg. parse(String alg)ConvertStringtoJWEAlg.static JWEAlg[]JWEAlg. toArray(int bits)static JWEAlgJWEAlg. valueOf(String name)Returns the enum constant of this type with the specified name.static JWEAlg[]JWEAlg. 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 JWEAlg Modifier and Type Method Description static EnumSet<JWEAlg>JWEAlg. toSet(int bits)static EnumSet<JWEAlg>JWEAlg. toSet(JWEAlg[] array)Methods in com.authlete.common.types with parameters of type JWEAlg Modifier and Type Method Description static booleanJWEAlg. isAsymmetric(JWEAlg alg)Check if the given JWE algorithm is an asymmetric one.static booleanJWEAlg. isSymmetric(JWEAlg alg)Check if the given JWE algorithm is a symmetric one.booleanHSM. supportsJweAlg(JWEAlg alg)Check if the HSM supports the specified encryption algorithm.static EnumSet<JWEAlg>JWEAlg. toSet(JWEAlg[] array)Method parameters in com.authlete.common.types with type arguments of type JWEAlg Modifier and Type Method Description static intJWEAlg. toBits(EnumSet<JWEAlg> set) -
Uses of JWEAlg in com.authlete.common.util
Methods in com.authlete.common.util with parameters of type JWEAlg Modifier and Type Method Description static booleanJoseUtils. isSupported(JWEAlg alg)Check whether the given JWE algorithm is supported by Authlete.
-