Uses of Class
io.vertx.mysqlclient.SslMode
-
Packages that use SslMode Package Description io.vertx.mysqlclient -
-
Uses of SslMode in io.vertx.mysqlclient
Fields in io.vertx.mysqlclient declared as SslMode Modifier and Type Field Description static SslMode
MySQLConnectOptions. DEFAULT_SSL_MODE
static SslMode[]
SslMode. VALUES
Methods in io.vertx.mysqlclient that return SslMode Modifier and Type Method Description SslMode
MySQLConnectOptions. getSslMode()
Get the value of the configured SSL mode.static SslMode
SslMode. of(String value)
static SslMode
SslMode. valueOf(String name)
Returns the enum constant of this type with the specified name.static SslMode[]
SslMode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.vertx.mysqlclient with parameters of type SslMode Modifier and Type Method Description MySQLConnectOptions
MySQLConnectOptions. setSslMode(SslMode sslMode)
Set theSslMode
for the client, this option can be used to specify the desired security state of the connection to the server.
-