Uses of Class
org.shredzone.acme4j.Identifier
Packages that use Identifier
Package
Description
acme4j is a Java client for the ACME protocol.
This package contains all standard challenges, as well as base classes for challenges
that are proprietary to a CA.
Internal toolbox.
A collection of utility classes.
-
Uses of Identifier in org.shredzone.acme4j
Methods in org.shredzone.acme4j that return IdentifierModifier and TypeMethodDescriptionIdentifier.allowSubdomainAuth()Gives the permission to authorize subdomains of this domain, as required in RFC-9444.static IdentifierCreates a new DNS identifier for the given domain name.Authorization.getIdentifier()Gets theIdentifierto be authorized.static IdentifierCreates a new IP identifier for the givenInetAddress.static IdentifierIdentifier.ip(InetAddress ip) Creates a new IP identifier for the givenInetAddress.Identifier.withAncestorDomain(String domain) Sets an ancestor domain, as required in RFC-9444.Methods in org.shredzone.acme4j that return types with arguments of type IdentifierModifier and TypeMethodDescriptionProblem.getIdentifier()Returns theIdentifierthis problem relates to.Order.getIdentifiers()Gets a list ofIdentifierthat are connected to this order.Methods in org.shredzone.acme4j with parameters of type IdentifierModifier and TypeMethodDescriptionOrderBuilder.identifier(Identifier identifier) Adds anIdentifierto the order.Account.preAuthorize(Identifier identifier) Pre-authorizes anIdentifier.Method parameters in org.shredzone.acme4j with type arguments of type IdentifierModifier and TypeMethodDescriptionOrderBuilder.identifiers(Collection<Identifier> identifiers) Adds a collection ofIdentifierto the order. -
Uses of Identifier in org.shredzone.acme4j.challenge
Methods in org.shredzone.acme4j.challenge with parameters of type IdentifierModifier and TypeMethodDescriptionTlsAlpn01Challenge.createCertificate(KeyPair keypair, Identifier id) Creates a self-signedX509Certificatefor this challenge.Dns01Challenge.getRRName(Identifier identifier) Converts a domain identifier to the Resource Record name to be used for the DNS TXT record.DnsAccount01Challenge.getRRName(Identifier identifier) Converts a domain identifier to the Resource Record name to be used for the DNS TXT record. -
Uses of Identifier in org.shredzone.acme4j.toolbox
Methods in org.shredzone.acme4j.toolbox that return Identifier -
Uses of Identifier in org.shredzone.acme4j.util
Methods in org.shredzone.acme4j.util with parameters of type IdentifierModifier and TypeMethodDescriptionvoidCSRBuilder.addIdentifier(Identifier id) Adds anIdentifier.voidCSRBuilder.addIdentifiers(Identifier... ids) Adds multipleIdentifier.static X509CertificateCertificateUtils.createTlsAlpn01Certificate(KeyPair keypair, Identifier id, byte[] acmeValidation) Creates a self-signedX509Certificatethat can be used for theTlsAlpn01Challenge.Method parameters in org.shredzone.acme4j.util with type arguments of type IdentifierModifier and TypeMethodDescriptionvoidCSRBuilder.addIdentifiers(Collection<Identifier> ids) Adds aCollectionofIdentifier.