first commit

This commit is contained in:
yy
2026-09-11 17:34:14 +08:00
commit dfb943919d
622 changed files with 26659 additions and 0 deletions
@@ -0,0 +1,18 @@
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();
}
}