wl
2022-10-01 4cdb5cec4d5c79aa662d73a86bb1dfcc9d73f1e2
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();
}