List of usage examples for org.apache.shiro.mgt SecurityManager hasAllRoles
boolean hasAllRoles(PrincipalCollection subjectPrincipal, Collection<String> roleIdentifiers);
From source file:com.sonicle.webtop.core.app.RunContext.java
License:Open Source License
private static boolean hasAllRoles(SecurityManager manager, PrincipalCollection principals, Collection<String> roles) { return manager.hasAllRoles(principals, roles); }