KKSU
2025-02-05 2caf98df09bd38006ca5e590fa2418588bf0a351
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);
    }
}