Subject.isPermitted

Checks if this Subject implies the given permission strings and returns a bool array indicating which permissions are implied. <p/> This is an overloaded method for the corresponding type-safe {@link Permission Permission} variant. Please see the class-level JavaDoc for more information on these string-based permission methods.

@param permissions the string representations of the Permissions that are being checked. @return a bool array where indices correspond to the index of the permissions in the given list. A true value at an index indicates this Subject is permitted for for the associated {@code Permission} string in the list. A false value at an index indicates otherwise.

Meta