Enum Connection.ClientAuth

    • Enum Constant Detail

      • disabled

        public static final Connection.ClientAuth disabled
        No authentication will be performed on the client. Client credentials will not be verified while negotiating TLS.
      • wanted

        public static final Connection.ClientAuth wanted
        Clients will try to be authenticated. Unlike needed, if the client chooses not to provide authentication information about itself, the TLS negotiations will stop and the connection will be dropped. This option is only useful for engines in the server mode.
      • needed

        public static final Connection.ClientAuth needed
        Clients need to be authenticated. Unlike wanted, if the client chooses not to provide authentication information about itself, the TLS negotiations will continue. This option is only useful for engines in the server mode.
    • Method Detail

      • values

        public static Connection.ClientAuth[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (Connection.ClientAuth c : Connection.ClientAuth.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Connection.ClientAuth valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null