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

io.quarkus.runtime.ssl.SslContextConfiguration Maven / Gradle / Ivy

The newest version!
package io.quarkus.runtime.ssl;

public class SslContextConfiguration {

    private static boolean sslNativeEnabled;

    public static void setSslNativeEnabled(boolean sslNativeEnabled) {
        SslContextConfiguration.sslNativeEnabled = sslNativeEnabled;
    }

    public static boolean isSslNativeEnabled() {
        return sslNativeEnabled;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy