Java org.apache.shiro.mgt SecurityManager fields, constructors, methods, implement or subclass

Example usage for Java org.apache.shiro.mgt SecurityManager fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.shiro.mgt SecurityManager.

The text is from its open source code.

Implementation

org.apache.shiro.mgt.SecurityManager has the following implementations.
Click this link to see all its implementation.

Method

booleanhasAllRoles(PrincipalCollection subjectPrincipal, Collection roleIdentifiers)
Returns true if the corresponding Subject/user has all of the specified roles, false otherwise.
booleanhasRole(PrincipalCollection subjectPrincipal, String roleIdentifier)
Returns true if the corresponding Subject/user has the specified role, false otherwise.
booleanisPermitted(PrincipalCollection principals, String permission)
Returns true if the corresponding subject/user is permitted to perform an action or access a resource summarized by the specified permission string.