yangys
2024-03-27 e48aa2ac8dea1be5db11c63edf0b912c4ad5ce65
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;
 
/* loaded from: blade-core-secure-9.3.0.0-SNAPSHOT.jar:org/springblade/core/secure/handler/ISecureHandler.class */
public interface ISecureHandler {
    HandlerInterceptorAdapter tokenInterceptor();
 
    HandlerInterceptorAdapter authInterceptor(List<AuthSecure> authSecures);
 
    HandlerInterceptorAdapter basicInterceptor(List<BasicSecure> basicSecures);
 
    HandlerInterceptorAdapter signInterceptor(List<SignSecure> signSecures);
 
    HandlerInterceptorAdapter clientInterceptor(String clientId);
}