io.vertx.core.net.SSLEngineOptions Java Examples
The following examples show how to use
io.vertx.core.net.SSLEngineOptions.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: DB2ConnectOptions.java From vertx-sql-client with Apache License 2.0 | 4 votes |
@Override public DB2ConnectOptions setSslEngineOptions(SSLEngineOptions sslEngineOptions) { return (DB2ConnectOptions) super.setSslEngineOptions(sslEngineOptions); }
Example #2
Source File: MSSQLConnectOptions.java From vertx-sql-client with Apache License 2.0 | 4 votes |
@Override public MSSQLConnectOptions setSslEngineOptions(SSLEngineOptions sslEngineOptions) { return (MSSQLConnectOptions) super.setSslEngineOptions(sslEngineOptions); }
Example #3
Source File: S3ClientOptions.java From vertx-s3-client with Apache License 2.0 | 4 votes |
@Override public S3ClientOptions setSslEngineOptions(final SSLEngineOptions sslEngineOptions) { super.setSslEngineOptions(sslEngineOptions); return this; }
Example #4
Source File: MailConfig.java From vertx-mail-client with Apache License 2.0 | 4 votes |
public MailConfig setSslEngineOptions(SSLEngineOptions sslEngineOptions) { super.setSslEngineOptions(sslEngineOptions); return this; }
Example #5
Source File: ProtonServerOptions.java From vertx-proton with Apache License 2.0 | 4 votes |
@Override public ProtonServerOptions setSslEngineOptions(SSLEngineOptions sslEngineOptions) { super.setSslEngineOptions(sslEngineOptions); return this; }
Example #6
Source File: ProtonClientOptions.java From vertx-proton with Apache License 2.0 | 4 votes |
@Override public ProtonClientOptions setSslEngineOptions(SSLEngineOptions sslEngineOptions) { super.setSslEngineOptions(sslEngineOptions); return this; }