@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", date="2024-11-14T16:41:31.650700Z[Etc/UTC]") public class JWKPublicKey extends Object
Modifier and Type | Field and Description |
---|---|
static String |
SERIALIZED_NAME_ALG |
static String |
SERIALIZED_NAME_CREATED_AT |
static String |
SERIALIZED_NAME_CRV |
static String |
SERIALIZED_NAME_EXPIRED_AT |
static String |
SERIALIZED_NAME_KID |
static String |
SERIALIZED_NAME_KTY |
static String |
SERIALIZED_NAME_USE |
static String |
SERIALIZED_NAME_X |
static String |
SERIALIZED_NAME_Y |
Constructor and Description |
---|
JWKPublicKey() |
Modifier and Type | Method and Description |
---|---|
JWKPublicKey |
alg(String alg) |
JWKPublicKey |
createdAt(Integer createdAt) |
JWKPublicKey |
crv(String crv) |
boolean |
equals(Object o) |
JWKPublicKey |
expiredAt(Integer expiredAt) |
String |
getAlg()
The alg member identifies the cryptographic algorithm family used with the key.
|
Integer |
getCreatedAt()
The timestamp when the key was created, in Unix time.
|
String |
getCrv()
The crv member identifies the cryptographic curve used with the key.
|
Integer |
getExpiredAt()
The timestamp when the key expired, in Unix time.
|
String |
getKid()
The kid (Key ID) member can be used to match a specific key.
|
String |
getKty()
The kty (key type) parameter identifies the cryptographic algorithm family used with the key, such as RSA or EC.
|
String |
getUse()
The use (public key use) parameter identifies the intended use of the public key.
|
String |
getX()
The x member contains the x coordinate for the elliptic curve point, provided as a base64url-encoded string of the coordinate's big endian representation.
|
String |
getY()
The y member contains the y coordinate for the elliptic curve point, provided as a base64url-encoded string of the coordinate's big endian representation.
|
int |
hashCode() |
JWKPublicKey |
kid(String kid) |
JWKPublicKey |
kty(String kty) |
void |
setAlg(String alg) |
void |
setCreatedAt(Integer createdAt) |
void |
setCrv(String crv) |
void |
setExpiredAt(Integer expiredAt) |
void |
setKid(String kid) |
void |
setKty(String kty) |
void |
setUse(String use) |
void |
setX(String x) |
void |
setY(String y) |
String |
toString() |
JWKPublicKey |
use(String use) |
JWKPublicKey |
x(String x) |
JWKPublicKey |
y(String y) |
public static final String SERIALIZED_NAME_ALG
public static final String SERIALIZED_NAME_CRV
public static final String SERIALIZED_NAME_KID
public static final String SERIALIZED_NAME_KTY
public static final String SERIALIZED_NAME_USE
public static final String SERIALIZED_NAME_X
public static final String SERIALIZED_NAME_Y
public static final String SERIALIZED_NAME_CREATED_AT
public static final String SERIALIZED_NAME_EXPIRED_AT
public JWKPublicKey alg(String alg)
public String getAlg()
public void setAlg(String alg)
public JWKPublicKey crv(String crv)
public String getCrv()
public void setCrv(String crv)
public JWKPublicKey kid(String kid)
public String getKid()
public void setKid(String kid)
public JWKPublicKey kty(String kty)
public String getKty()
public void setKty(String kty)
public JWKPublicKey use(String use)
public String getUse()
public void setUse(String use)
public JWKPublicKey x(String x)
public String getX()
public void setX(String x)
public JWKPublicKey y(String y)
public String getY()
public void setY(String y)
public JWKPublicKey createdAt(Integer createdAt)
public Integer getCreatedAt()
public void setCreatedAt(Integer createdAt)
public JWKPublicKey expiredAt(Integer expiredAt)
@Nullable public Integer getExpiredAt()
public void setExpiredAt(Integer expiredAt)
Copyright © 2017–2024 Plaid Inc.. All rights reserved.