io.muserver.acme.NoOpAcmeCertManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mu-acme Show documentation
Show all versions of mu-acme Show documentation
A library to make Mu Server work with LetsEncrypt and other ACME HTTPS certificate providers
The newest version!
package io.muserver.acme;
import io.muserver.HttpsConfigBuilder;
import io.muserver.MuHandler;
import io.muserver.MuServer;
class NoOpAcmeCertManager implements AcmeCertManager {
@Override
public void start(MuServer muServer) {
}
@Override
public void stop() {
}
@Override
public void forceRenew() {
}
@Override
public HttpsConfigBuilder createHttpsConfig() {
return HttpsConfigBuilder.unsignedLocalhost();
}
@Override
public MuHandler createHandler() {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy