public static enum JdbcRealm.SaltStyle extends Enum<JdbcRealm.SaltStyle>
JdbcRealm.getSaltForUser(String)
will be called
to get the saltModifier and Type | Method and Description |
---|---|
static JdbcRealm.SaltStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JdbcRealm.SaltStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JdbcRealm.SaltStyle NO_SALT
public static final JdbcRealm.SaltStyle CRYPT
public static final JdbcRealm.SaltStyle COLUMN
public static final JdbcRealm.SaltStyle EXTERNAL
public static JdbcRealm.SaltStyle[] values()
for (JdbcRealm.SaltStyle c : JdbcRealm.SaltStyle.values()) System.out.println(c);
public static JdbcRealm.SaltStyle 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 © 2004–2019 The Apache Software Foundation. All rights reserved.