xml
wl
2022-11-14 c00d2abcf1209e29e76644910a89cfc7de1bdcad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.ycl.component;
 
import org.springframework.security.access.ConfigAttribute;
 
import java.util.Map;
 
/**
 * 动态权限相关业务类
 */
public interface DynamicSecurityService {
    /**
     * 加载资源ANT通配符和资源对应MAP
     */
    Map<String, ConfigAttribute> loadDataSource();
}