Commentthread

git-svn-id: svn://svn.dsv.su.se/scipro/scipro/trunk@262 73ecded7-942e-4092-bab0-0e58ef0ee984
This commit is contained in:
joha-asc 2011-03-01 09:24:20 +00:00
parent cf63256e37
commit c323b73637

@ -0,0 +1,16 @@
/**
*
*/
package se.su.dsv.scipro.data.dao.interfaces;
import se.su.dsv.scipro.data.dataobjects.CommentThread;
/**
* @author Johan Aschan - aschan@dsv.su.se
*
*/
public interface CommentThreadDao extends Dao<CommentThread>{
public CommentThread getCommentThreadByClassAndId(final String className, final long classId);
}