yz
2021-03-01 4c136bc8d4c7d16a7918a06bb4bda5f34a54ba5d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package cc.mrbird.febs.common.core.entity.constant;
 
/**
 * 端点常量
 *
 * @author MrBird
 */
public interface EndpointConstant {
 
    String ALL = "/**";
 
    String OAUTH_ALL = "/oauth/**";
 
    String OAUTH_AUTHORIZE = "/oauth/authorize";
 
    String OAUTH_CHECK_TOKEN = "/oauth/check_token";
 
    String OAUTH_CONFIRM_ACCESS = "/oauth/confirm_access";
 
    String OAUTH_TOKEN = "/oauth/token";
 
    String OAUTH_TOKEN_KEY = "/oauth/token_key";
 
    String OAUTH_ERROR = "/oauth/error";
 
    String ACTUATOR_ALL = "/actuator/**";
 
    String LOGIN = "/login";
}