Example usage for io.vertx.core.net JksOptions JksOptions

List of usage examples for io.vertx.core.net JksOptions JksOptions

Introduction

In this page you can find the example usage for io.vertx.core.net JksOptions JksOptions.

Prototype

public JksOptions(JsonObject json) 

Source Link

Document

Create options from JSON

Usage

From source file:com.englishtown.vertx.jersey.impl.DefaultJerseyOptions.java

License:Open Source License

/**
 * Vert.x http server key store options//  w  ww . j  a  v a 2  s .  com
 *
 * @return Java key store options
 */
@Override
public JksOptions getKeyStoreOptions() {
    JsonObject json = config.getJsonObject(CONFIG_JKS_OPTIONS);
    return json == null ? null : new JksOptions(json);
}