Enum SslMode
- All Implemented Interfaces:
Serializable, Comparable<SslMode>
The different values for the sslmode parameter provide different levels of
protection. See more information in Protection
Provided in Different Modes.
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionfirst try a non-SSL connection; if that fails, try an SSL connection.only try a non-SSL connection.first try an SSL connection; if that fails, try a non-SSL connection.only try an SSL connection.only try an SSL connection, and verify that the server certificate is issued by a trusted certificate authority (CA).only try an SSL connection, verify that the server certificate is issued by a trusted CA and that the requested server host name matches that in the certificate. -
Field Summary
Fields -
Method Summary
-
Enum Constant Details
-
DISABLE
only try a non-SSL connection. -
ALLOW
first try a non-SSL connection; if that fails, try an SSL connection. -
PREFER
first try an SSL connection; if that fails, try a non-SSL connection. -
REQUIRE
only try an SSL connection. If a root CA file is present, verify the certificate in the same way as if verify-ca was specified. -
VERIFY_CA
only try an SSL connection, and verify that the server certificate is issued by a trusted certificate authority (CA). -
VERIFY_FULL
only try an SSL connection, verify that the server certificate is issued by a trusted CA and that the requested server host name matches that in the certificate.
-
-
Field Details
-
VALUES
-
value
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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 nameNullPointerException- if the argument is null
-
of
-