Package sh.ory.hydra.model
Class JsonWebKeySetGeneratorRequest
- java.lang.Object
-
- sh.ory.hydra.model.JsonWebKeySetGeneratorRequest
-
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", date="2021-01-12T16:13:57.119092Z[GMT]") public class JsonWebKeySetGeneratorRequest extends Object
JsonWebKeySetGeneratorRequest
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_ALGstatic StringSERIALIZED_NAME_KIDstatic StringSERIALIZED_NAME_USE
-
Constructor Summary
Constructors Constructor Description JsonWebKeySetGeneratorRequest()
-
Method Summary
Modifier and Type Method Description JsonWebKeySetGeneratorRequestalg(String alg)booleanequals(Object o)StringgetAlg()The algorithm to be used for creating the key.StringgetKid()The kid of the key to be createdStringgetUse()The \"use\" (public key use) parameter identifies the intended use of the public key.inthashCode()JsonWebKeySetGeneratorRequestkid(String kid)voidsetAlg(String alg)voidsetKid(String kid)voidsetUse(String use)StringtoString()JsonWebKeySetGeneratorRequestuse(String use)
-
-
-
Field Detail
-
SERIALIZED_NAME_ALG
public static final String SERIALIZED_NAME_ALG
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_KID
public static final String SERIALIZED_NAME_KID
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_USE
public static final String SERIALIZED_NAME_USE
- See Also:
- Constant Field Values
-
-
Method Detail
-
alg
public JsonWebKeySetGeneratorRequest alg(String alg)
-
getAlg
public String getAlg()
The algorithm to be used for creating the key. Supports \"RS256\", \"ES512\", \"HS512\", and \"HS256\"- Returns:
- alg
-
setAlg
public void setAlg(String alg)
-
kid
public JsonWebKeySetGeneratorRequest kid(String kid)
-
getKid
public String getKid()
The kid of the key to be created- Returns:
- kid
-
setKid
public void setKid(String kid)
-
use
public JsonWebKeySetGeneratorRequest use(String use)
-
getUse
public String getUse()
The \"use\" (public key use) parameter identifies the intended use of the public key. The \"use\" parameter is employed to indicate whether a public key is used for encrypting data or verifying the signature on data. Valid values are \"enc\" and \"sig\".- Returns:
- use
-
setUse
public void setUse(String use)
-
-