19 lines
414 B
Java
19 lines
414 B
Java
package com.metalloop.common.auth.handler;
|
|
|
|
|
|
import com.metalloop.common.auth.Authentication;
|
|
import com.metalloop.common.model.Result;
|
|
|
|
/**
|
|
* 登出成功处理器默认实现
|
|
*
|
|
* @author zhaowenhao
|
|
* @since 2023-03-19
|
|
*/
|
|
public class DefaultLogoutSuccessHandler implements LogoutSuccessHandler {
|
|
@Override
|
|
public Object onSuccess(Authentication authentication) {
|
|
return Result.ok();
|
|
}
|
|
}
|