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

me.snowdrop.istio.api.model.v1.networking.TLSmode Maven / Gradle / Ivy

package me.snowdrop.istio.api.model.v1.networking;

public enum TLSmode {
    /**
     * Forward the connection to the upstream server selected based on the SNI string presented by the client.
     */
    PASSTHROUGH(0),
    /**
     * Secure connections with standard TLS semantics.
     */
    SIMPLE(1),
    /**
     * Secure connections to the upstream using mutual TLS by presenting client certificates for authentication.
     */
    MUTUAL(2);

    private final int intValue;

    TLSmode(int intValue) {
        this.intValue = intValue;
    }

    public int value() {
        return intValue;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy