Package com.adobe.granite.security.user
Enum AuthorizableTypes
- java.lang.Object
-
- java.lang.Enum<AuthorizableTypes>
-
- com.adobe.granite.security.user.AuthorizableTypes
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<AuthorizableTypes>
public enum AuthorizableTypes extends java.lang.Enum<AuthorizableTypes>
Enumeration of combinations of authorizable types.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALLAll authorizables: users (and system users) and groups.GROUPSOnly groups.SYSTEM_USERSOnly system users.USERSOnly users.USERS_AND_SYSTEM_USERSAll users (including system users).
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanincludesGroups()Provides a way to determine if this AuthorizableTypes value refers to groups as well.booleanincludesSystemUsers()Provides a way to determine if this AuthorizableTypes value refers to system users as well.booleanincludesUsers()Provides a way to determine if this AuthorizableTypes value refers to users as well.static AuthorizableTypesvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AuthorizableTypes[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL
public static final AuthorizableTypes ALL
All authorizables: users (and system users) and groups.
-
USERS
public static final AuthorizableTypes USERS
Only users. System users are excluded.
-
SYSTEM_USERS
public static final AuthorizableTypes SYSTEM_USERS
Only system users. Regular users are excluded.
-
USERS_AND_SYSTEM_USERS
public static final AuthorizableTypes USERS_AND_SYSTEM_USERS
All users (including system users).
-
GROUPS
public static final AuthorizableTypes GROUPS
Only groups.
-
-
Method Detail
-
values
public static AuthorizableTypes[] 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 (AuthorizableTypes c : AuthorizableTypes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuthorizableTypes 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
-
includesUsers
public boolean includesUsers()
Provides a way to determine if this AuthorizableTypes value refers to users as well. Only regular users (not system users) are reflected by this method.- Returns:
trueif the regular users are included by this enum value andfalseotherwise
-
includesSystemUsers
public boolean includesSystemUsers()
Provides a way to determine if this AuthorizableTypes value refers to system users as well. Only system users (not regular users) are reflected by this method.- Returns:
trueif the system users are included by this enum value andfalseotherwise
-
includesGroups
public boolean includesGroups()
Provides a way to determine if this AuthorizableTypes value refers to groups as well.- Returns:
trueif the groups are included by this enum value andfalseotherwise
-
-