Enum UserRecordType
- java.lang.Object
-
- java.lang.Enum<UserRecordType>
-
- org.bonitasoft.engine.identity.recorder.UserRecordType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<UserRecordType>
public enum UserRecordType extends java.lang.Enum<UserRecordType>
List all possible change of elements of the identity service- Author:
- Baptiste Mesta, Matthieu Chaffotte
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static UserRecordTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static UserRecordType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DELETE_USER
public static final UserRecordType DELETE_USER
-
ADD_USER
public static final UserRecordType ADD_USER
-
UPDATE_USER_PASSWORD
public static final UserRecordType UPDATE_USER_PASSWORD
-
ADD_PROFILE_METADATA_DEFINITION
public static final UserRecordType ADD_PROFILE_METADATA_DEFINITION
-
ADD_PROFILE_METADATA_VALUE
public static final UserRecordType ADD_PROFILE_METADATA_VALUE
-
DELETE_PROFILE_METADATA_DEFINITION
public static final UserRecordType DELETE_PROFILE_METADATA_DEFINITION
-
DELETE_PROFILE_METADATA_VALUE
public static final UserRecordType DELETE_PROFILE_METADATA_VALUE
-
DELETE_ROLE
public static final UserRecordType DELETE_ROLE
-
ADD_GROUP
public static final UserRecordType ADD_GROUP
-
ADD_ROLE
public static final UserRecordType ADD_ROLE
-
DELETE_GROUP
public static final UserRecordType DELETE_GROUP
-
DELETE_USER_MEMBERSHIP
public static final UserRecordType DELETE_USER_MEMBERSHIP
-
setUsersMemberships
public static final UserRecordType setUsersMemberships
-
UPDATE_USER
public static final UserRecordType UPDATE_USER
-
UPDATE_ROLE
public static final UserRecordType UPDATE_ROLE
-
UPDATE_GROUP
public static final UserRecordType UPDATE_GROUP
-
ADD_USER_MEMBERSHIP
public static final UserRecordType ADD_USER_MEMBERSHIP
-
UPDTAE_PROFILE_METADATA_DEFINITION
public static final UserRecordType UPDTAE_PROFILE_METADATA_DEFINITION
-
UPDATE_PROFILE_METADATA_VALUE
public static final UserRecordType UPDATE_PROFILE_METADATA_VALUE
-
UPDATE_USER_MEMBERSHIP
public static final UserRecordType UPDATE_USER_MEMBERSHIP
-
-
Method Detail
-
values
public static UserRecordType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (UserRecordType c : UserRecordType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UserRecordType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-