Uses of Class
org.forgerock.json.jose.jwk.KeyOperation
-
Packages that use KeyOperation Package Description org.forgerock.json.jose.jwk Classes and interfaces for creating and manipulating JWKs. -
-
Uses of KeyOperation in org.forgerock.json.jose.jwk
Fields in org.forgerock.json.jose.jwk with type parameters of type KeyOperation Modifier and Type Field Description protected Set<KeyOperation>
JWK.Builder. keyOperations
The key operations, optional.Methods in org.forgerock.json.jose.jwk that return KeyOperation Modifier and Type Method Description static KeyOperation
KeyOperation. getKeyOperations(String name)
Get the KeyOperation.static KeyOperation
KeyOperation. valueOf(String name)
Returns the enum constant of this type with the specified name.static KeyOperation[]
KeyOperation. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.forgerock.json.jose.jwk that return types with arguments of type KeyOperation Modifier and Type Method Description Set<KeyOperation>
JWK. getKeyOperations()
Gets the key operations parameter of the JWK.Method parameters in org.forgerock.json.jose.jwk with type arguments of type KeyOperation Modifier and Type Method Description B
JWK.Builder. keyOperations(Set<KeyOperation> keyOperations)
Set the key operations parameter of the JWK.Constructor parameters in org.forgerock.json.jose.jwk with type arguments of type KeyOperation Constructor Description JWK(KeyType keyType, String use, Set<KeyOperation> keyOperations, Algorithm algorithm, String keyId, String x509url, String x509Thumbprint, List<String> x509Chain)
Creates a JWK given the basic parameters.
-