Enum AuthorizableTypes

    • 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).
    • 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​(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 name
        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:
        true if the regular users are included by this enum value and false otherwise
      • 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:
        true if the system users are included by this enum value and false otherwise
      • includesGroups

        public boolean includesGroups()
        Provides a way to determine if this AuthorizableTypes value refers to groups as well.
        Returns:
        true if the groups are included by this enum value and false otherwise