Class: SSLSupport

vertx/ssl_support~ SSLSupport

new SSLSupport(delegate)

SSL support functions for network objects. Do not use this object directly. These functions are mixed into the network objects for you.
Parameters:
Name Type Description
delegate external:SSLSupport The Java delegate for most functions
Source:
See:

Methods

keyStorePassword(password) → {boolean|Object}

Get or set the current keystore password for this object.
Parameters:
Name Type Argument Description
password string <optional>
If provided, sets the keystore password
Source:
Returns:
the current password, or this.
Type
boolean | Object

keyStorePath(path) → {boolean|Object}

Get or set the current keystore path for this object.
Parameters:
Name Type Argument Description
path string <optional>
If provided, sets the keystore path
Source:
Returns:
the current path, or this.
Type
boolean | Object

ssl(ssl) → {boolean|Object}

Get or set the current SSL support for this object.
Parameters:
Name Type Argument Description
ssl boolean <optional>
If provided, sets whether this object supports SSL
Source:
Returns:
the current status, or this.
Type
boolean | Object

trustStorePassword(password) → {boolean|Object}

Get or set the current trust store password for this object.
Parameters:
Name Type Argument Description
password string <optional>
If provided, sets the trust store password
Source:
Returns:
the current password, or this.
Type
boolean | Object

trustStorePath(path) → {boolean|Object}

Get or set the current trust store path for this object.
Parameters:
Name Type Argument Description
path string <optional>
If provided, sets the trust store path
Source:
Returns:
the current path, or this.
Type
boolean | Object