io.quarkus.tls.CertificateUpdatedEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-tls-registry Show documentation
Show all versions of quarkus-tls-registry Show documentation
An internal TLS certificate registry.
The newest version!
package io.quarkus.tls;
/**
* Event fired when a certificate is updated.
*
* IMPORTANT: Consumers of this event should be aware that the event is fired from a blocking context (worker thread),
* and thus can perform blocking operations.
*
* @param name the name of the certificate (as configured in the configuration, {@code } for the default certificate)
* @param tlsConfiguration the updated TLS configuration - the certificate has already been updated
*/
public record CertificateUpdatedEvent(String name, TlsConfiguration tlsConfiguration) {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy