public enum UserType extends Enum<UserType>
user
Enum Constant and Description |
---|
NORMAL
'Normal' users are backed by a user from a Crowd directory and are capable of authenticating
via the UI or REST provided they are licensed to do so.
|
SERVICE
'Service' users are not backed by a user from a Crowd directory and are not able to authenticate via
the UI or REST.
|
Modifier and Type | Method and Description |
---|---|
static UserType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserType NORMAL
public static final UserType SERVICE
public static UserType[] values()
for (UserType c : UserType.values()) System.out.println(c);
public static UserType 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 © 2019 Atlassian. All rights reserved.