matrix.business.oauth2.service.HttpSecurityService Maven / Gradle / Ivy
package matrix.business.oauth2.service;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
/**
* @author wangcheng
* 2021/9/1
**/
public interface HttpSecurityService {
/**
* http安全配置
* @param http http安全配置
*/
void init(HttpSecurity http);
}