public enum SecurityConfigProvider extends Enum<SecurityConfigProvider>
| Enum Constant and Description |
|---|
INSTANCE |
| Modifier and Type | Field and Description |
|---|---|
static long |
DEFAULT_MAX_NONCE_AGE |
| Modifier and Type | Method and Description |
|---|---|
long |
getMaxNonceAge() |
void |
init(long maxNonceAge) |
static SecurityConfigProvider |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SecurityConfigProvider[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecurityConfigProvider INSTANCE
public static final long DEFAULT_MAX_NONCE_AGE
public static SecurityConfigProvider[] values()
for (SecurityConfigProvider c : SecurityConfigProvider.values()) System.out.println(c);
public static SecurityConfigProvider 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 nullpublic void init(long maxNonceAge)
public long getMaxNonceAge()
Copyright © 2005–2018 Oracle Corporation. All rights reserved.