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

io.scalecube.security.tokens.jwt.vault.VaultJwkList Maven / Gradle / Ivy

There is a newer version: 1.0.33.rc1
Show newest version
package io.scalecube.security.tokens.jwt.vault;

import java.util.List;
import java.util.StringJoiner;

public class VaultJwkList {

  private List keys;

  /**
   * Serialization only constructor.
   *
   * @deprecated not to be used
   */
  public VaultJwkList() {}

  public List keys() {
    return keys;
  }

  @Override
  public String toString() {
    return new StringJoiner(", ", VaultJwkList.class.getSimpleName() + "[", "]")
        .add("keys=" + keys)
        .toString();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy