Class KeyResponse
- java.lang.Object
-
- com.aquima.web.boot.security.openid.KeyResponse
-
public class KeyResponse extends Object
Ker response entity in accordance the JSON Web Key (JWK) Fromat.- Since:
- 11.4
- Author:
- Voicu Moldovan
-
-
Constructor Summary
Constructors Constructor Description KeyResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAlgorithm()
String
getExponent()
String
getKeyId()
String
getKeyType()
String
getModulus()
String
getUse()
void
setAlgorithm(String algorithm)
void
setExponent(String exponent)
void
setKeyId(String keyId)
void
setKeyType(String keyType)
void
setModulus(String modulus)
void
setUse(String use)
-
-
-
Method Detail
-
getKeyId
public String getKeyId()
-
setKeyId
public void setKeyId(String keyId)
-
getKeyType
public String getKeyType()
-
setKeyType
public void setKeyType(String keyType)
-
getAlgorithm
public String getAlgorithm()
-
setAlgorithm
public void setAlgorithm(String algorithm)
-
getUse
public String getUse()
-
setUse
public void setUse(String use)
-
getModulus
public String getModulus()
-
setModulus
public void setModulus(String modulus)
-
getExponent
public String getExponent()
-
setExponent
public void setExponent(String exponent)
-
-