Uses of Class
com.authlete.common.types.JWEEnc
-
Packages that use JWEEnc 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 JWEEnc in com.authlete.common.dto
Methods in com.authlete.common.dto that return JWEEnc Modifier and Type Method Description JWEEnc
Client. getAuthorizationEncryptionEnc()
Get the JWEenc
algorithm for encrypting authorization responses.JWEEnc[]
CredentialIssuerMetadata. getCredentialResponseEncryptionEncValuesSupported()
Get the supported JWEenc
algorithms for credential response encryption.JWEEnc
Client. getIdTokenEncryptionEnc()
Get the JWEenc
algorithm for encrypting the ID token issued to this client.JWEEnc
StandardIntrospectionRequest. getIntrospectionEncryptionEnc()
Get the JWEenc
algorithm for encrypting the introspection response.JWEEnc
Client. getRequestEncryptionEnc()
Get the JWEenc
algorithm for encrypting request objects.JWEEnc
Client. getUserInfoEncryptionEnc()
Get the JWEenc
algorithm for encrypting UserInfo responses.Methods in com.authlete.common.dto with parameters of type JWEEnc Modifier and Type Method Description Client
Client. setAuthorizationEncryptionEnc(JWEEnc enc)
Set the JWEenc
algorithm for encrypting authorization responses.CredentialIssuerMetadata
CredentialIssuerMetadata. setCredentialResponseEncryptionEncValuesSupported(JWEEnc[] encs)
Set the supported JWEenc
algorithms for credential response encryption.Client
Client. setIdTokenEncryptionEnc(JWEEnc enc)
Set the JWEenc
algorithm for encrypting the ID token issued to this client.StandardIntrospectionRequest
StandardIntrospectionRequest. setIntrospectionEncryptionEnc(JWEEnc enc)
Set the JWEenc
algorithm for encrypting the introspection response.Client
Client. setRequestEncryptionEnc(JWEEnc enc)
Set the JWEenc
algorithm for encrypting request objects.Client
Client. setUserInfoEncryptionEnc(JWEEnc enc)
Set the JWEenc
algorithm for encrypting UserInfo responses. -
Uses of JWEEnc in com.authlete.common.types
Methods in com.authlete.common.types that return JWEEnc Modifier and Type Method Description static JWEEnc
JWEEnc. getByValue(short value)
Find an instance of this enum by a value.static JWEEnc
JWEEnc. parse(String alg)
ConvertString
toJWEEnc
.static JWEEnc[]
JWEEnc. toArray(int bits)
static JWEEnc
JWEEnc. valueOf(String name)
Returns the enum constant of this type with the specified name.static JWEEnc[]
JWEEnc. 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 JWEEnc Modifier and Type Method Description static EnumSet<JWEEnc>
JWEEnc. toSet(int bits)
static EnumSet<JWEEnc>
JWEEnc. toSet(JWEEnc[] array)
Methods in com.authlete.common.types with parameters of type JWEEnc Modifier and Type Method Description static EnumSet<JWEEnc>
JWEEnc. toSet(JWEEnc[] array)
Method parameters in com.authlete.common.types with type arguments of type JWEEnc Modifier and Type Method Description static int
JWEEnc. toBits(EnumSet<JWEEnc> set)
-