1 /*2 * Created on 02/07/20053 *4 * TODO To change the template for this generated file go to5 * Window - Preferences - Java - Code Style - Code Templates6 */7 package org.javabb.dao.entity;8 9 import org.javabb.dao.DAOConstants;10 11 /**12 * @author Dalton13 *14 * TODO To change the template for this generated type comment go to15 * Window - Preferences - Java - Code Style - Code Templates16 */17 public interface IRefreshStatsDAO extends DAOConstants {18 public void refreshForum(Long forumId);19 public void refreshTopic(Long topicId);20 public void refreshPost(Long postId);21 }22