public static enum KeyStoreService.KEYSTORE_ATTRIBUTE extends java.lang.Enum<KeyStoreService.KEYSTORE_ATTRIBUTE>
| Enum Constant and Description |
|---|
HSM_PROTECTED
if the keystore is hsm protected
|
MODIFICATION_TIME
last modification time of this keystore
|
PERMISSION_PROTECTED
if the keystore is permission protected
|
| Modifier and Type | Method and Description |
|---|---|
static KeyStoreService.KEYSTORE_ATTRIBUTE |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static KeyStoreService.KEYSTORE_ATTRIBUTE[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final KeyStoreService.KEYSTORE_ATTRIBUTE MODIFICATION_TIME
public static final KeyStoreService.KEYSTORE_ATTRIBUTE HSM_PROTECTED
public static final KeyStoreService.KEYSTORE_ATTRIBUTE PERMISSION_PROTECTED
public static KeyStoreService.KEYSTORE_ATTRIBUTE[] values()
for (KeyStoreService.KEYSTORE_ATTRIBUTE c : KeyStoreService.KEYSTORE_ATTRIBUTE.values())
System.out.println(c);
public static KeyStoreService.KEYSTORE_ATTRIBUTE valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null