public enum RegistrationDestination extends Enum<RegistrationDestination>
Enum Constant and Description |
---|
AUTO_LOGIN
Auto login automatically authenticates the user.
|
DEFAULT
Default displays a successful registration message.
|
LOGIN
Login takes the user to the login page.
|
Modifier and Type | Method and Description |
---|---|
static RegistrationDestination |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RegistrationDestination[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RegistrationDestination DEFAULT
public static final RegistrationDestination LOGIN
public static final RegistrationDestination AUTO_LOGIN
public static RegistrationDestination[] values()
for (RegistrationDestination c : RegistrationDestination.values()) System.out.println(c);
public static RegistrationDestination 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 © 2010–2025 Open Identity Platform Community. All rights reserved.