xiaoyong931011
2021-09-27 ce1fba3d0a107bd6ea79b3ad9ae47c63f57a0a13
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);
    }
}