com.biz.operation.log.store.OperationLogUserContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of biz-all Show documentation
Show all versions of biz-all Show documentation
BizX 是一个灵活而高效的业务开发框架, 其中也有很多为业务开发所需要的工具类的提供。
The newest version!
package com.biz.operation.log.store;
/**
* {@code OperationLogUserContext}接口定义了操作日志中当前用户信息的存储和管理方法。
*
* 该接口主要用于获取当前操作用户的ID和姓名。
*
* 主要方法包括:
*
* - {@link #getOperationUserId()}:获取当前操作用户的唯一标识符(ID)。
* - {@link #getOperationUserName()}:获取当前操作用户的姓名。
*
*
* 该接口通常用于操作日志的记录过程中,以确保日志中包含正确的用户信息。
*
* @author francis
* @since 1.0.0
* @version 1.0.0
*/
public interface OperationLogUserContext {
/**
* 获取当前操作用户的唯一标识符(ID)。
*
* @return 操作用户的ID
*/
String getOperationUserId();
/**
* 获取当前操作用户的姓名。
*
* @return 操作用户的姓名
*/
String getOperationUserName();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy