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 StaticPublicKeyA 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 SummaryNested Classes Modifier and Type Class Description static classJsonWebKey.Builderstatic classJsonWebKey.KeyOpsstatic classJsonWebKey.KtyThe key type.static classJsonWebKey.UseThe intended use of the public key.- 
Nested classes/interfaces inherited from class com.oracle.bmc.apigateway.model.StaticPublicKeyStaticPublicKey.Format
 
- 
 - 
Constructor SummaryConstructors Constructor Description JsonWebKey(String kid, JsonWebKey.Kty kty, JsonWebKey.Use use, List<JsonWebKey.KeyOps> keyOps, String alg, String n, String e)Deprecated.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static JsonWebKey.Builderbuilder()Create a new builder.booleanequals(Object o)StringgetAlg()The algorithm intended for use with this key.StringgetE()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.KtygetKty()The key type.StringgetN()The base64 url encoded modulus of the RSA public key represented by this key.JsonWebKey.UsegetUse()The intended use of the public key.inthashCode()JsonWebKey.BuildertoBuilder()StringtoString()StringtoString(boolean includeByteArrayContents)Return a string representation of the object.- 
Methods inherited from class com.oracle.bmc.apigateway.model.StaticPublicKeygetKid
 
- 
 
- 
- 
- 
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- 
builderpublic static JsonWebKey.Builder builder() Create a new builder.
 - 
toBuilderpublic JsonWebKey.Builder toBuilder() 
 - 
getKtypublic JsonWebKey.Kty getKty() The key type.- Returns:
- the value
 
 - 
getUsepublic JsonWebKey.Use getUse() The intended use of the public key.- Returns:
- the value
 
 - 
getKeyOpspublic List<JsonWebKey.KeyOps> getKeyOps() The operations for which this key is to be used.- Returns:
- the value
 
 - 
getAlgpublic String getAlg() The algorithm intended for use with this key.- Returns:
- the value
 
 - 
getNpublic String getN() The base64 url encoded modulus of the RSA public key represented by this key.- Returns:
- the value
 
 - 
getEpublic String getE() The base64 url encoded exponent of the RSA public key represented by this key.- Returns:
- the value
 
 - 
toStringpublic String toString() - Overrides:
- toStringin class- StaticPublicKey
 
 - 
toStringpublic String toString(boolean includeByteArrayContents) Return a string representation of the object.- Overrides:
- toStringin class- StaticPublicKey
- Parameters:
- includeByteArrayContents- true to include the full contents of byte arrays
- Returns:
- string representation
 
 - 
equalspublic boolean equals(Object o) - Overrides:
- equalsin class- StaticPublicKey
 
 - 
hashCodepublic int hashCode() - Overrides:
- hashCodein class- StaticPublicKey
 
 
- 
 
-