userindexedservice.java

来自「社区文章采用的是平板、树形自由选择的两种展示方式」· Java 代码 · 共 26 行

JAVA
26
字号
/* 
 * Created on 2007-9-22
 * Last modified on 2007-9-22
 * Powered by YeQiangWei.com
 */
package com.yeqiangwei.club.service.user;

import com.yeqiangwei.club.model.UserIndexed;
import com.yeqiangwei.club.exception.ClubException;

public interface UserIndexedService {
	
	
	public UserIndexed create(int userId) throws ClubException;
	
	/**
	 * 如果配置的服务器索引组全部索引了文件则清楚记录释放空间并更新用户表用户为已索引。
	 * @param userId
	 * @return
	 * @throws ClubException 
	 */
	public void clear(int userId) throws ClubException;
	
	public UserIndexed findByUserIdAndServerName(int userId, String serverName);
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?