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

org.xnio.SslClientAuthMode Maven / Gradle / Ivy

There is a newer version: 62
Show newest version

package org.xnio;

/**
 * The desired SSL client authentication mode for SSL channels in server mode.
 */
public enum SslClientAuthMode {

    /**
     * SSL client authentication is not requested.
     */
    NOT_REQUESTED,
    /**
     * SSL client authentication is requested but not required.
     */
    REQUESTED,
    /**
     * SSL client authentication is required.
     */
    REQUIRED,
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy