Uses of Class
sh.ory.hydra.model.JSONWebKeySet
-
Packages that use JSONWebKeySet Package Description sh.ory.hydra.api sh.ory.hydra.model -
-
Uses of JSONWebKeySet in sh.ory.hydra.api
Methods in sh.ory.hydra.api that return JSONWebKeySet Modifier and Type Method Description JSONWebKeySetAdminApi. createJsonWebKeySet(String set, JsonWebKeySetGeneratorRequest body)Generate a New JSON Web Key This endpoint is capable of generating JSON Web Key Sets for you.JSONWebKeySetAdminApi. getJsonWebKey(String kid, String set)Fetch a JSON Web Key This endpoint returns a singular JSON Web Key, identified by the set and the specific key ID (kid).JSONWebKeySetAdminApi. getJsonWebKeySet(String set)Retrieve a JSON Web Key Set This endpoint can be used to retrieve JWK Sets stored in ORY Hydra.JSONWebKeySetAdminApi. updateJsonWebKeySet(String set, JSONWebKeySet body)Update a JSON Web Key Set Use this method if you do not want to let Hydra generate the JWKs for you, but instead save your own.JSONWebKeySetPublicApi. wellKnown()JSON Web Keys Discovery This endpoint returns JSON Web Keys to be used as public keys for verifying OpenID Connect ID Tokens and, if enabled, OAuth 2.0 JWT Access Tokens.Methods in sh.ory.hydra.api that return types with arguments of type JSONWebKeySet Modifier and Type Method Description ApiResponse<JSONWebKeySet>AdminApi. createJsonWebKeySetWithHttpInfo(String set, JsonWebKeySetGeneratorRequest body)Generate a New JSON Web Key This endpoint is capable of generating JSON Web Key Sets for you.ApiResponse<JSONWebKeySet>AdminApi. getJsonWebKeySetWithHttpInfo(String set)Retrieve a JSON Web Key Set This endpoint can be used to retrieve JWK Sets stored in ORY Hydra.ApiResponse<JSONWebKeySet>AdminApi. getJsonWebKeyWithHttpInfo(String kid, String set)Fetch a JSON Web Key This endpoint returns a singular JSON Web Key, identified by the set and the specific key ID (kid).ApiResponse<JSONWebKeySet>AdminApi. updateJsonWebKeySetWithHttpInfo(String set, JSONWebKeySet body)Update a JSON Web Key Set Use this method if you do not want to let Hydra generate the JWKs for you, but instead save your own.ApiResponse<JSONWebKeySet>PublicApi. wellKnownWithHttpInfo()JSON Web Keys Discovery This endpoint returns JSON Web Keys to be used as public keys for verifying OpenID Connect ID Tokens and, if enabled, OAuth 2.0 JWT Access Tokens.Methods in sh.ory.hydra.api with parameters of type JSONWebKeySet Modifier and Type Method Description JSONWebKeySetAdminApi. updateJsonWebKeySet(String set, JSONWebKeySet body)Update a JSON Web Key Set Use this method if you do not want to let Hydra generate the JWKs for you, but instead save your own.okhttp3.CallAdminApi. updateJsonWebKeySetAsync(String set, JSONWebKeySet body, ApiCallback<JSONWebKeySet> _callback)Update a JSON Web Key Set (asynchronously) Use this method if you do not want to let Hydra generate the JWKs for you, but instead save your own.okhttp3.CallAdminApi. updateJsonWebKeySetCall(String set, JSONWebKeySet body, ApiCallback _callback)Build call for updateJsonWebKeySetApiResponse<JSONWebKeySet>AdminApi. updateJsonWebKeySetWithHttpInfo(String set, JSONWebKeySet body)Update a JSON Web Key Set Use this method if you do not want to let Hydra generate the JWKs for you, but instead save your own.Method parameters in sh.ory.hydra.api with type arguments of type JSONWebKeySet Modifier and Type Method Description okhttp3.CallAdminApi. createJsonWebKeySetAsync(String set, JsonWebKeySetGeneratorRequest body, ApiCallback<JSONWebKeySet> _callback)Generate a New JSON Web Key (asynchronously) This endpoint is capable of generating JSON Web Key Sets for you.okhttp3.CallAdminApi. getJsonWebKeyAsync(String kid, String set, ApiCallback<JSONWebKeySet> _callback)Fetch a JSON Web Key (asynchronously) This endpoint returns a singular JSON Web Key, identified by the set and the specific key ID (kid).okhttp3.CallAdminApi. getJsonWebKeySetAsync(String set, ApiCallback<JSONWebKeySet> _callback)Retrieve a JSON Web Key Set (asynchronously) This endpoint can be used to retrieve JWK Sets stored in ORY Hydra.okhttp3.CallAdminApi. updateJsonWebKeySetAsync(String set, JSONWebKeySet body, ApiCallback<JSONWebKeySet> _callback)Update a JSON Web Key Set (asynchronously) Use this method if you do not want to let Hydra generate the JWKs for you, but instead save your own.okhttp3.CallPublicApi. wellKnownAsync(ApiCallback<JSONWebKeySet> _callback)JSON Web Keys Discovery (asynchronously) This endpoint returns JSON Web Keys to be used as public keys for verifying OpenID Connect ID Tokens and, if enabled, OAuth 2.0 JWT Access Tokens. -
Uses of JSONWebKeySet in sh.ory.hydra.model
Methods in sh.ory.hydra.model that return JSONWebKeySet Modifier and Type Method Description JSONWebKeySetJSONWebKeySet. addKeysItem(JSONWebKey keysItem)JSONWebKeySetJSONWebKeySet. keys(List<JSONWebKey> keys)
-