Enum UserManagementServlet.Operation
- java.lang.Object
-
- java.lang.Enum<UserManagementServlet.Operation>
-
- com.composum.sling.core.usermanagement.core.UserManagementServlet.Operation
-
- All Implemented Interfaces:
Serializable,Comparable<UserManagementServlet.Operation>
- Enclosing class:
- UserManagementServlet
public static enum UserManagementServlet.Operation extends Enum<UserManagementServlet.Operation>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description addtogroupauthorizableauthorizablesdisableenablegroupgroupsgroupsofauthorizablepasswordpropertiesqueryremovefromgroupsystemusertreeuserusers
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static UserManagementServlet.OperationvalueOf(String name)Returns the enum constant of this type with the specified name.static UserManagementServlet.Operation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
users
public static final UserManagementServlet.Operation users
-
user
public static final UserManagementServlet.Operation user
-
groups
public static final UserManagementServlet.Operation groups
-
tree
public static final UserManagementServlet.Operation tree
-
group
public static final UserManagementServlet.Operation group
-
authorizable
public static final UserManagementServlet.Operation authorizable
-
disable
public static final UserManagementServlet.Operation disable
-
enable
public static final UserManagementServlet.Operation enable
-
password
public static final UserManagementServlet.Operation password
-
groupsofauthorizable
public static final UserManagementServlet.Operation groupsofauthorizable
-
removefromgroup
public static final UserManagementServlet.Operation removefromgroup
-
addtogroup
public static final UserManagementServlet.Operation addtogroup
-
query
public static final UserManagementServlet.Operation query
-
systemuser
public static final UserManagementServlet.Operation systemuser
-
authorizables
public static final UserManagementServlet.Operation authorizables
-
properties
public static final UserManagementServlet.Operation properties
-
-
Method Detail
-
values
public static UserManagementServlet.Operation[] 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 (UserManagementServlet.Operation c : UserManagementServlet.Operation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UserManagementServlet.Operation valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-