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

io.vertx.ext.auth.jwt.JWTKeyStoreOptions Maven / Gradle / Ivy

There is a newer version: 5.0.0.CR3
Show newest version
/*
 * Copyright 2015 Red Hat, Inc.
 *
 *  All rights reserved. This program and the accompanying materials
 *  are made available under the terms of the Eclipse Public License v1.0
 *  and Apache License v2.0 which accompanies this distribution.
 *
 *  The Eclipse Public License is available at
 *  http://www.eclipse.org/legal/epl-v10.html
 *
 *  The Apache License v2.0 is available at
 *  http://www.opensource.org/licenses/apache2.0.php
 *
 *  You may elect to redistribute this code under either of these licenses.
 */
package io.vertx.ext.auth.jwt;

import io.vertx.codegen.annotations.DataObject;
import io.vertx.core.json.JsonObject;

/**
 * Options describing how an JWT KeyStore should behave.
 *
 * @deprecated Keystores are very opinionated and do not properly represent a correct key, please use PEM files or JWKs
 * @author Paulo Lopes
 */
@Deprecated
@DataObject(generateConverter = true)
public class JWTKeyStoreOptions {

  // Defaults
  private static final String TYPE = "jceks";

  private String type;
  private String path;
  private String password;

  /**
   * Default constructor
   */
  public JWTKeyStoreOptions() {
    init();
  }

  /**
   * Copy constructor
   *
   * @param other the options to copy
   */
  public JWTKeyStoreOptions(JWTKeyStoreOptions other) {
    type = other.getType();
    path = other.getPath();
    password = other.getPassword();
  }

  private void init() {
    type = TYPE;
  }

  /**
   * Constructor to create an options from JSON
   *
   * @param json the JSON
   */
  public JWTKeyStoreOptions(JsonObject json) {
    init();
    JWTKeyStoreOptionsConverter.fromJson(json, this);
  }

  public String getType() {
    return type;
  }

  public JWTKeyStoreOptions setType(String type) {
    this.type = type;
    return this;
  }

  public String getPath() {
    return path;
  }

  public JWTKeyStoreOptions setPath(String path) {
    this.path = path;
    return this;
  }

  public String getPassword() {
    return password;
  }

  public JWTKeyStoreOptions setPassword(String password) {
    this.password = password;
    return this;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy