yangys
2024-04-04 ed4a5236bab800094be4a8378f5098eebe3de6ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.qianwen.core.secure.handler;
 
import java.util.List;
import com.qianwen.core.secure.props.AuthSecure;
import com.qianwen.core.secure.props.BasicSecure;
import com.qianwen.core.secure.props.SignSecure;
import org.springframework.web.servlet.handler.HandlerInterceptorAdapter;
 
 
public interface ISecureHandler {
    HandlerInterceptorAdapter tokenInterceptor();
 
    HandlerInterceptorAdapter authInterceptor(List<AuthSecure> authSecures);
 
    HandlerInterceptorAdapter basicInterceptor(List<BasicSecure> basicSecures);
 
    HandlerInterceptorAdapter signInterceptor(List<SignSecure> signSecures);
 
    HandlerInterceptorAdapter clientInterceptor(String clientId);
}