Class Metadata

java.lang.Object
org.shredzone.acme4j.Metadata

public class Metadata extends Object
A collection of metadata related to the CA provider.
  • Constructor Details

    • Metadata

      public Metadata(JSON meta)
      Creates a new Metadata instance.
      Parameters:
      meta - JSON map of metadata
  • Method Details

    • getTermsOfService

      Returns an URI of the current terms of service, or empty if not available.
    • getWebsite

      public Optional<URL> getWebsite()
      Returns an URL of a website providing more information about the ACME server. Empty if not available.
    • getCaaIdentities

      Returns a collection of hostnames, which the ACME server recognises as referring to itself for the purposes of CAA record validation. Empty if not available.
    • isExternalAccountRequired

      public boolean isExternalAccountRequired()
      Returns whether an external account is required by this CA.
    • isAutoRenewalEnabled

      public boolean isAutoRenewalEnabled()
      Returns whether the CA supports short-term auto-renewal of certificates.
      Since:
      2.3
    • getAutoRenewalMinLifetime

      Returns the minimum acceptable value for the maximum validity of a certificate before auto-renewal.
      Throws:
      AcmeNotSupportedException - if the server does not support auto-renewal.
      Since:
      2.3
    • getAutoRenewalMaxDuration

      Returns the maximum delta between auto-renewal end date and auto-renewal start date.
      Throws:
      AcmeNotSupportedException - if the server does not support auto-renewal.
      Since:
      2.3
    • isAutoRenewalGetAllowed

      public boolean isAutoRenewalGetAllowed()
      Returns whether the CA also allows to fetch STAR certificates via GET request.
      Throws:
      AcmeNotSupportedException - if the server does not support auto-renewal.
      Since:
      2.6
    • getJSON

      public JSON getJSON()
      Returns the JSON representation of the metadata. This is useful for reading proprietary metadata properties.