Administrator
4 days ago 9d878bc8c45d2fac7e1ab44b768f6b4f1cdf8b2d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package cc.mrbird.febs.common.authentication;
 
import cc.mrbird.febs.common.annotation.Helper;
import org.apache.shiro.authz.AuthorizationInfo;
 
/**
 * @author MrBird
 */
@Helper
public class ShiroHelper extends ShiroRealm {
 
    /**
     * 获取当前用户的角色和权限集合
     *
     * @return AuthorizationInfo
     */
    public AuthorizationInfo getCurrentUserAuthorizationInfo() {
        return super.doGetAuthorizationInfo(null);
    }
}