public enum GroupActionType extends Enum<GroupActionType>
Enum Constant and Description |
---|
ADD_ENTITY
Add entity
|
CREATE_GROUP
Create group
|
DELETE_GROUP
Delete group
|
EDIT_ACTIVE_DIR_DETAILS
Edit Active Directory details
|
REMOVE_ENTITY
Remove entity
|
RENAME_GROUP
Rename group
|
USER_ADDED_TO_FOLDER
Added to folder
|
USER_ADDED_TO_ROOM |
USER_REMOVED_FROM_FOLDER
Removed from folder
|
USER_REMOVED_FROM_ROOM
Removed form room
|
USER_SET_MANAGER
User was set as group manager
|
USER_UNSET_MANAGER
User is no group manager anymore
|
Modifier and Type | Method and Description |
---|---|
static GroupActionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GroupActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GroupActionType CREATE_GROUP
public static final GroupActionType DELETE_GROUP
public static final GroupActionType ADD_ENTITY
public static final GroupActionType REMOVE_ENTITY
public static final GroupActionType RENAME_GROUP
public static final GroupActionType EDIT_ACTIVE_DIR_DETAILS
public static final GroupActionType USER_ADDED_TO_ROOM
public static final GroupActionType USER_REMOVED_FROM_ROOM
public static final GroupActionType USER_ADDED_TO_FOLDER
public static final GroupActionType USER_REMOVED_FROM_FOLDER
public static final GroupActionType USER_SET_MANAGER
public static final GroupActionType USER_UNSET_MANAGER
public static GroupActionType[] values()
for (GroupActionType c : GroupActionType.values()) System.out.println(c);
public static GroupActionType 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. All rights reserved.