Class Account

    • Method Detail

      • getTermsOfServiceAgreed

        public Optional<BooleangetTermsOfServiceAgreed()
        Returns if the user agreed to the terms of service.
        Returns:
        true if the user agreed to the terms of service. May be empty if the server did not provide such an information.
      • getContacts

        public List<URIgetContacts()
        List of registered contact addresses (emails, phone numbers etc).

        This list is unmodifiable. Use modify() to change the contacts. May be empty, but is never null.

      • hasExternalAccountBinding

        public boolean hasExternalAccountBinding()
        Returns true if the account is bound to an external non-ACME account.
        Since:
        2.8
      • getKeyIdentifier

        public Optional<StringgetKeyIdentifier()
        Returns the key identifier of the external non-ACME account. If this account is not bound to an external account, the result is empty.
        Since:
        2.8
      • preAuthorizeDomain

        public Authorization preAuthorizeDomain​(String domain)
                                         throws AcmeException
        Pre-authorizes a domain. The CA will check if it accepts the domain for certification, and returns the necessary challenges.

        Some servers may not allow pre-authorization.

        It is not possible to pre-authorize wildcard domains.

        Parameters:
        domain - Domain name to be pre-authorized. IDN names are accepted and will be ACE encoded automatically.
        Returns:
        Authorization object for this domain
        Throws:
        AcmeException - if the server does not allow pre-authorization
        AcmeServerException - if the server allows pre-authorization, but will refuse to issue a certificate for this domain
      • preAuthorize

        public Authorization preAuthorize​(Identifier identifier)
                                   throws AcmeException
        Pre-authorizes an Identifier. The CA will check if it accepts the identifier for certification, and returns the necessary challenges.

        Some servers may not allow pre-authorization.

        It is not possible to pre-authorize wildcard domains.

        Parameters:
        identifier - Identifier to be pre-authorized.
        Returns:
        Authorization object for this identifier
        Throws:
        AcmeException - if the server does not allow pre-authorization
        AcmeServerException - if the server allows pre-authorization, but will refuse to issue a certificate for this identifier
        Since:
        2.3
      • changeKey

        public void changeKey​(KeyPair newKeyPair)
                       throws AcmeException
        Changes the KeyPair associated with the account.

        After a successful call, the new key pair is already set in the associated Login. The old key pair can be discarded.

        Parameters:
        newKeyPair - new KeyPair to be used for identifying this account
        Throws:
        AcmeException
      • deactivate

        public void deactivate()
                        throws AcmeException
        Permanently deactivates an account. Related certificates may still be valid after account deactivation, and need to be revoked separately if neccessary.

        A deactivated account cannot be reactivated!

        Throws:
        AcmeException