修复错误的 javadoc 格式

This commit is contained in:
click33
2023-05-15 19:53:57 +08:00
parent 017546bedf
commit f4dd609d8a
37 changed files with 37 additions and 37 deletions

View File

@@ -27,7 +27,7 @@ import cn.dev33.satoken.dao.SaTokenDao;
* <p> 在应用全局范围内: 存值、取值。数据在应用重启后失效,如果集成了 Redis则在 Redis 重启后失效。
*
* @author click33
* @since: 2022-8-17
* @since 2022-8-17
*/
public class SaApplication implements SaSetValueInterface {

View File

@@ -22,7 +22,7 @@ import cn.dev33.satoken.util.SaFoxUtil;
* <p> 封装 SaStorage、SaSession、SaApplication 等存取值的一些固定方法,减少重复编码 </p>
*
* @author click33
* @since: 2022-8-16
* @since 2022-8-16
*/
public interface SaGetValueInterface {

View File

@@ -22,7 +22,7 @@ import cn.dev33.satoken.fun.SaRetFunction;
* <p> 封装 SaStorage、SaSession、SaApplication 等存取值的一些固定方法,减少重复编码 </p>
*
* @author click33
* @since: 2022-8-17
* @since 2022-8-17
*/
public interface SaSetValueInterface extends SaGetValueInterface {

View File

@@ -30,7 +30,7 @@ import cn.dev33.satoken.stp.StpLogic;
* <p> 提供侦听器注册、事件发布能力 </p>
*
* @author click33
* @since: 2022-8-19
* @since 2022-8-19
*/
public class SaTokenEventCenter {

View File

@@ -23,7 +23,7 @@ import cn.dev33.satoken.stp.SaLoginModel;
* <p> 对所有事件方法提供空实现,方便开发者通过继承此类快速实现一个可用的侦听器 </p>
*
* @author click33
* @since: 2022-8-20
* @since 2022-8-20
*/
public class SaTokenListenerForSimple implements SaTokenListener {