Package com.authlete.common.dto
Class CredentialIssuerMetadataRequest
- java.lang.Object
-
- com.authlete.common.dto.CredentialIssuerMetadataRequest
-
- All Implemented Interfaces:
Serializable
public class CredentialIssuerMetadataRequest extends Object implements Serializable
Request to Authlete's/vci/metadata
API.The Authlete API is supposed to be used from within the implementation of the credential issuer metadata endpoint (
/.well-known/openid-credential-issuer
).- Since:
- 3.55, Authlete 3.0
- See Also:
- OpenID for Verifiable Credential Issuance, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CredentialIssuerMetadataRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isPretty()
Get the flag indicating whether the metadata is written in the pretty format or not.CredentialIssuerMetadataRequest
setPretty(boolean pretty)
Set the flag indicating whether the metadata is written in the pretty format or not.
-
-
-
Method Detail
-
isPretty
public boolean isPretty()
Get the flag indicating whether the metadata is written in the pretty format or not.- Returns:
true
if the metadata is written in the pretty format.- Since:
- 3.56
-
setPretty
public CredentialIssuerMetadataRequest setPretty(boolean pretty)
Set the flag indicating whether the metadata is written in the pretty format or not.- Parameters:
pretty
-true
to write the metadata in the pretty format.- Returns:
this
object.- Since:
- 3.56
-
-