fix(config): implement setTimeoutLogoutLog in ShiroRealmConfig (no-op)

This commit is contained in:
openclaw
2026-02-11 17:49:18 +08:00
parent 7932725687
commit 39d5ea76e5

View File

@@ -79,4 +79,12 @@ public class ShiroRealmConfig implements SystemRealm {
return map;
}
/**
* 超时登出时记录(实现接口方法,默认不做处理)
* @param userId 用户 id
*/
@Override
public void setTimeoutLogoutLog(String userId) {
// no-op
}
}