Class JWK.Builder
- java.lang.Object
-
- com.oracle.bmc.identitydataplane.model.JWK.Builder
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JWK.Builderalg(String alg)The algorithm.JWKbuild()JWK.Buildercopy(JWK model)JWK.Buildere(String e)The exponent.JWK.Builderkid(String kid)The key id.JWK.Builderkty(String kty)The key type.JWK.Buildern(String n)The modulus.JWK.Builderuse(String use)The key use.
-
-
-
Method Detail
-
n
public JWK.Builder n(String n)
The modulus.- Parameters:
n- the value to set- Returns:
- this builder
-
e
public JWK.Builder e(String e)
The exponent.- Parameters:
e- the value to set- Returns:
- this builder
-
kid
public JWK.Builder kid(String kid)
The key id.- Parameters:
kid- the value to set- Returns:
- this builder
-
use
public JWK.Builder use(String use)
The key use.- Parameters:
use- the value to set- Returns:
- this builder
-
alg
public JWK.Builder alg(String alg)
The algorithm.- Parameters:
alg- the value to set- Returns:
- this builder
-
kty
public JWK.Builder kty(String kty)
The key type.- Parameters:
kty- the value to set- Returns:
- this builder
-
build
public JWK build()
-
copy
public JWK.Builder copy(JWK model)
-
-