All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.muserver.acme.NoOpAcmeCertManager Maven / Gradle / Ivy

Go to download

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