io.micronaut.acme.events.CertificateEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micronaut-acme Show documentation
Show all versions of micronaut-acme Show documentation
Extensions to integrate Micronaut and Acme
The newest version!
/*
* Copyright 2017-2020 original authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.micronaut.acme.events;
import io.micronaut.core.annotation.NonNull;
import java.security.KeyPair;
import java.security.cert.X509Certificate;
/**
* Event used to alert when a new ACME certificate is ready for use.
*/
public class CertificateEvent {
private final KeyPair domainKeyPair;
private final X509Certificate[] fullCertificateChain;
private boolean validationCert;
/**
* Creates a new CertificateEvent containing the full certificate chain.
* @param domainKeyPair key pair used to encrypt the certificate
* @param validationCert if this certificate is to be used for tls-apln-01 account validation
* @param fullCertificateChain X509 certificate file
*/
public CertificateEvent(KeyPair domainKeyPair, boolean validationCert, X509Certificate... fullCertificateChain) {
if (fullCertificateChain == null || fullCertificateChain.length == 0) {
throw new IllegalArgumentException("Certificate chain must not be empty");
}
this.validationCert = validationCert;
this.domainKeyPair = domainKeyPair;
this.fullCertificateChain = fullCertificateChain;
}
/**
* @return Certificate created by ACME server
*/
public X509Certificate getCert() {
return fullCertificateChain[0];
}
/**
* @return KeyPair used to encrypt the certificate.
*/
public KeyPair getDomainKeyPair() {
return domainKeyPair;
}
/**
* @return if this is a validation certificate to be used for tls-apln-01 account validation
*/
public boolean isValidationCert() {
return validationCert;
}
/**
* Return the full certificate chain.
*
* @return array of certificates in the chain.
*/
@NonNull
public X509Certificate[] getFullCertificateChain() {
return fullCertificateChain;
}
}