public enum InvalidLoginPolicy extends Enum<InvalidLoginPolicy>
| Enum Constant and Description |
|---|
SERVER
SERVER means login attempts from same remote server.
|
SESSION
SESSION is default and it means that login attempts are coming from same HTTP session.
|
SESSION_AND_USER
SESSION_AND_USER is indicating login attempts of same user and from same HTTP session.
|
| Modifier and Type | Method and Description |
|---|---|
static InvalidLoginPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InvalidLoginPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InvalidLoginPolicy SESSION
public static final InvalidLoginPolicy SESSION_AND_USER
public static final InvalidLoginPolicy SERVER
public static InvalidLoginPolicy[] values()
for (InvalidLoginPolicy c : InvalidLoginPolicy.values()) System.out.println(c);
public static InvalidLoginPolicy 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 © 2017 JBoss by Red Hat. All Rights Reserved.