All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.arangodb.shaded.vertx.core.net.KeyStoreOptions Maven / Gradle / Ivy

There is a newer version: 7.8.0
Show newest version
/*
 * Copyright (c) 2011-2021 Contributors to the Eclipse Foundation
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
 * which is available at https://www.apache.org/licenses/LICENSE-2.0.
 *
 * SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
 */

package com.arangodb.shaded.vertx.core.net;

import com.arangodb.shaded.vertx.codegen.annotations.DataObject;
import com.arangodb.shaded.vertx.core.buffer.Buffer;
import com.arangodb.shaded.vertx.core.json.JsonObject;

/**
 * Key or trust store options configuring private key and/or certificates based on {@code KeyStore}.
 *
 * 
    *
  • when used as a key store, it should point to a store containing a private key and its certificate.
  • *
  • when used as a trust store, it should point to a store containing a list of trusted certificates.
  • *
* *

The store can either be loaded by Vert.x from the filesystem: * *

 * HttpServerOptions options = HttpServerOptions.httpServerOptions();
 * options.setKeyCertOptions(new KeyStoreOptions().setType("JKS").setPath("/mykeystore.jks").setPassword("foo"));
 * 
* * Or directly provided as a buffer: * *
 * Buffer store = vertx.fileSystem().readFileBlocking("/mykeystore.jks");
 * options.setKeyCertOptions(new KeyStoreOptions().setType("JKS").setValue(store).setPassword("foo"));
 * 
* *

You can also use specific subclasses {@link JksOptions} or {@link PfxOptions} that will set * the {@link #setType} for you: * *

 * HttpServerOptions options = HttpServerOptions.httpServerOptions();
 * options.setKeyCertOptions(new JksOptions().setPath("/mykeystore.jks").setPassword("foo"));
 * 
* * @author Julien Viet * @author Tim Fox */ @DataObject(generateConverter = true) public class KeyStoreOptions extends KeyStoreOptionsBase { /** * Default constructor */ public KeyStoreOptions() { super(); } /** * Copy constructor * * @param other the options to copy */ public KeyStoreOptions(KeyStoreOptions other) { super(other); } /** * Create options from JSON * * @param json the JSON */ public KeyStoreOptions(JsonObject json) { this(); KeyStoreOptionsConverter.fromJson(json, this); } /** * @return the store provider */ public String getProvider() { return super.getProvider(); } /** * Set the store provider. * * @param provider the type * @return a reference to this, so the API can be used fluently */ public KeyStoreOptions setProvider(String provider) { return (KeyStoreOptions) super.setProvider(provider); } /** * @return the store type */ public String getType() { return super.getType(); } /** * Set the store type. * * @param type the type * @return a reference to this, so the API can be used fluently */ public KeyStoreOptions setType(String type) { return (KeyStoreOptions) super.setType(type); } @Override public KeyStoreOptions setPassword(String password) { return (KeyStoreOptions) super.setPassword(password); } @Override public KeyStoreOptions setPath(String path) { return (KeyStoreOptions) super.setPath(path); } @Override public KeyStoreOptions setValue(Buffer value) { return (KeyStoreOptions) super.setValue(value); } @Override public KeyStoreOptions setAlias(String alias) { return (KeyStoreOptions) super.setAlias(alias); } @Override public KeyStoreOptions setAliasPassword(String aliasPassword) { return (KeyStoreOptions) super.setAliasPassword(aliasPassword); } @Override public KeyStoreOptions copy() { return new KeyStoreOptions(this); } /** * Convert to JSON * * @return the JSON */ public JsonObject toJson() { JsonObject json = new JsonObject(); KeyStoreOptionsConverter.toJson(this, json); return json; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy