17 lines
441 B
Java
17 lines
441 B
Java
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, "认证服务器端点配置器不能为空");
|
|
}
|
|
}
|