Package com.authlete.common.dto
Class CredentialIssuerJwksRequest
- java.lang.Object
-
- com.authlete.common.dto.CredentialIssuerJwksRequest
-
- All Implemented Interfaces:
Serializable
public class CredentialIssuerJwksRequest extends Object implements Serializable
Request to Authlete's/vci/jwks
API.The Authlete API can be used to implement an endpoint that returns the JWK Set document of the credential issuer that contains public keys only.
- Since:
- 3.72, Authlete 3.0
- See Also:
- OpenID for Verifiable Credential Issuance, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CredentialIssuerJwksRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isPretty()
Get the flag indicating whether the JWK Set document is written in the pretty format or not.CredentialIssuerJwksRequest
setPretty(boolean pretty)
Set the flag indicating whether the JWK Set document is written in the pretty format or not.
-
-
-
Method Detail
-
isPretty
public boolean isPretty()
Get the flag indicating whether the JWK Set document is written in the pretty format or not.- Returns:
true
if the JWK Set document is written in the pretty format.
-
setPretty
public CredentialIssuerJwksRequest setPretty(boolean pretty)
Set the flag indicating whether the JWK Set document is written in the pretty format or not.- Parameters:
pretty
-true
to write the JWK Set document in the pretty format.- Returns:
this
object.
-
-