@Title(value="Key store") public enum KeyStoreConf extends Enum<KeyStoreConf>
| Enum Constant and Description |
|---|
KEY_ALIAS |
KEY_PASSWORD |
PASSWORD |
PATH |
| Modifier and Type | Method and Description |
|---|---|
static KeyStoreConf |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KeyStoreConf[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Path(value="oxalis.keystore.path") @DefaultValue(value="oxalis-keystore.jks") public static final KeyStoreConf PATH
@Path(value="oxalis.keystore.password") @DefaultValue(value="changeit") @Secret public static final KeyStoreConf PASSWORD
@Path(value="oxalis.keystore.key.alias") @DefaultValue(value="ap") public static final KeyStoreConf KEY_ALIAS
@Path(value="oxalis.keystore.key.password") @DefaultValue(value="changeit") @Secret public static final KeyStoreConf KEY_PASSWORD
public static KeyStoreConf[] values()
for (KeyStoreConf c : KeyStoreConf.values()) System.out.println(c);
public static KeyStoreConf valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021 NorStella. All rights reserved.