first commit
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
package com.metalloop.common.auth.config;
|
||||
|
||||
import org.springframework.util.Assert;
|
||||
|
||||
/**
|
||||
* 认证服务器配置器适配器
|
||||
*
|
||||
* @author zhaowenhao
|
||||
* @since 2023-03-19
|
||||
*/
|
||||
public class AuthServerConfigurerAdapter implements AuthServerConfigurer {
|
||||
@Override
|
||||
public void configure(AuthServerEndpointsConfigurer configurer) throws Exception {
|
||||
Assert.notNull(configurer, "认证服务器端点配置器不能为空");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user