Package com.oracle.bmc.apigateway.model
Class JsonWebKey
- java.lang.Object
-
- com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel
-
- com.oracle.bmc.apigateway.model.StaticPublicKey
-
- com.oracle.bmc.apigateway.model.JsonWebKey
-
@Generated(value="OracleSDKGenerator", comments="API Version: 20190501") public final class JsonWebKey extends StaticPublicKey
A JSON Web Key that represents the public key used for verifying the JWT signature.
Note: Objects should always be created or deserialized using theJsonWebKey.Builder
. This model distinguishes fields that are null because they are unset from fields that are explicitly set to null. This is done in the setter methods of theJsonWebKey.Builder
, which maintain a set of all explicitly set fields calledJsonWebKey.Builder.__explicitlySet__
. ThehashCode()
andequals(Object)
methods are implemented to take the explicitly set fields into account. The constructor, on the other hand, does not take the explicitly set fields into account (since the constructor cannot distinguish explicit null from unset null).
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
JsonWebKey.Builder
static class
JsonWebKey.KeyOps
static class
JsonWebKey.Kty
The key type.static class
JsonWebKey.Use
The intended use of the public key.-
Nested classes/interfaces inherited from class com.oracle.bmc.apigateway.model.StaticPublicKey
StaticPublicKey.Format
-
-
Constructor Summary
Constructors Constructor Description JsonWebKey(String kid, JsonWebKey.Kty kty, JsonWebKey.Use use, List<JsonWebKey.KeyOps> keyOps, String alg, String n, String e)
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static JsonWebKey.Builder
builder()
Create a new builder.boolean
equals(Object o)
String
getAlg()
The algorithm intended for use with this key.String
getE()
The base64 url encoded exponent of the RSA public key represented by this key.List<JsonWebKey.KeyOps>
getKeyOps()
The operations for which this key is to be used.JsonWebKey.Kty
getKty()
The key type.String
getN()
The base64 url encoded modulus of the RSA public key represented by this key.JsonWebKey.Use
getUse()
The intended use of the public key.int
hashCode()
JsonWebKey.Builder
toBuilder()
String
toString()
String
toString(boolean includeByteArrayContents)
Return a string representation of the object.-
Methods inherited from class com.oracle.bmc.apigateway.model.StaticPublicKey
getKid
-
-
-
-
Constructor Detail
-
JsonWebKey
@Deprecated public JsonWebKey(String kid, JsonWebKey.Kty kty, JsonWebKey.Use use, List<JsonWebKey.KeyOps> keyOps, String alg, String n, String e)
Deprecated.
-
-
Method Detail
-
builder
public static JsonWebKey.Builder builder()
Create a new builder.
-
toBuilder
public JsonWebKey.Builder toBuilder()
-
getKty
public JsonWebKey.Kty getKty()
The key type.- Returns:
- the value
-
getUse
public JsonWebKey.Use getUse()
The intended use of the public key.- Returns:
- the value
-
getKeyOps
public List<JsonWebKey.KeyOps> getKeyOps()
The operations for which this key is to be used.- Returns:
- the value
-
getAlg
public String getAlg()
The algorithm intended for use with this key.- Returns:
- the value
-
getN
public String getN()
The base64 url encoded modulus of the RSA public key represented by this key.- Returns:
- the value
-
getE
public String getE()
The base64 url encoded exponent of the RSA public key represented by this key.- Returns:
- the value
-
toString
public String toString()
- Overrides:
toString
in classStaticPublicKey
-
toString
public String toString(boolean includeByteArrayContents)
Return a string representation of the object.- Overrides:
toString
in classStaticPublicKey
- Parameters:
includeByteArrayContents
- true to include the full contents of byte arrays- Returns:
- string representation
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classStaticPublicKey
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classStaticPublicKey
-
-