KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > javabb > dao > entity > IRefreshStatsDAO


1 /*
2  * Created on 02/07/2005
3  *
4  * TODO To change the template for this generated file go to
5  * Window - Preferences - Java - Code Style - Code Templates
6  */

7 package org.javabb.dao.entity;
8
9 import org.javabb.dao.DAOConstants;
10
11 /**
12  * @author Dalton
13  *
14  * TODO To change the template for this generated type comment go to
15  * Window - Preferences - Java - Code Style - Code Templates
16  */

17 public interface IRefreshStatsDAO extends DAOConstants {
18     public void refreshForum(Long JavaDoc forumId);
19     public void refreshTopic(Long JavaDoc topicId);
20     public void refreshPost(Long JavaDoc postId);
21 }
22
Popular Tags