Package | Description |
---|---|
io.vertx.core.eventbus |
== The Event Bus
:toc: left
The
event bus is the *nervous system* of Vert.x. |
io.vertx.core.http |
== Writing HTTP servers and clients
Vert.x allows you to easily write non blocking HTTP clients and servers.
|
io.vertx.core.net |
== Writing TCP servers and clients
Vert.x allows you to easily write non blocking TCP clients and servers.
|
Modifier and Type | Method and Description |
---|---|
EventBusOptions |
EventBusOptions.setKeyStoreOptions(JksOptions options) |
EventBusOptions |
EventBusOptions.setTrustStoreOptions(JksOptions options) |
Modifier and Type | Method and Description |
---|---|
HttpServerOptions |
HttpServerOptions.setKeyStoreOptions(JksOptions options) |
HttpClientOptions |
HttpClientOptions.setKeyStoreOptions(JksOptions options) |
HttpServerOptions |
HttpServerOptions.setTrustStoreOptions(JksOptions options) |
HttpClientOptions |
HttpClientOptions.setTrustStoreOptions(JksOptions options) |
Modifier and Type | Method and Description |
---|---|
JksOptions |
JksOptions.clone() |
JksOptions |
TCPSSLOptions.getKeyStoreOptions()
Get the key/cert options in jks format, aka Java keystore.
|
JksOptions |
TCPSSLOptions.getTrustStoreOptions()
Get the trust options in jks format, aka Java truststore
|
JksOptions |
JksOptions.setPassword(String password)
Set the password for the key store
|
JksOptions |
JksOptions.setPath(String path)
Set the path to the key store
|
JksOptions |
JksOptions.setValue(Buffer value)
Set the key store as a buffer
|
Modifier and Type | Method and Description |
---|---|
static void |
JksOptionsConverter.fromJson(JsonObject json,
JksOptions obj) |
ClientOptionsBase |
ClientOptionsBase.setKeyStoreOptions(JksOptions options) |
NetClientOptions |
NetClientOptions.setKeyStoreOptions(JksOptions options) |
TCPSSLOptions |
TCPSSLOptions.setKeyStoreOptions(JksOptions options)
Set the key/cert options in jks format, aka Java keystore.
|
NetServerOptions |
NetServerOptions.setKeyStoreOptions(JksOptions options) |
ClientOptionsBase |
ClientOptionsBase.setTrustStoreOptions(JksOptions options) |
NetClientOptions |
NetClientOptions.setTrustStoreOptions(JksOptions options) |
TCPSSLOptions |
TCPSSLOptions.setTrustStoreOptions(JksOptions options)
Set the trust options in jks format, aka Java truststore
|
NetServerOptions |
NetServerOptions.setTrustStoreOptions(JksOptions options) |
static void |
JksOptionsConverter.toJson(JksOptions obj,
JsonObject json) |
Constructor and Description |
---|
JksOptions(JksOptions other)
Copy constructor
|
Copyright © 2018 Eclipse. All rights reserved.