NoteDAO.java
资源名称:Myblog.rar [点击查看]
上传用户:wlfwy2004
上传日期:2016-12-12
资源大小:33978k
文件大小:1k
源码类别:
Jsp/Servlet
开发平台:
Java
- package com.opensource.blog.dao;
- import com.opensource.blog.model.Note;
- import java.util.*;
- public interface NoteDAO {
- /**
- *
- * @param note Note
- * @return Note
- */
- public Note saveNote(Note note);
- /**
- *
- * @param id long
- * @param blogID long
- * @return Note
- */
- public Note findNoteByID_BlogID(long id, long blogID);
- /**
- *
- * @param artID long
- * @param blogID long
- * @return int
- */
- public int getNoteCountByArtID(long artID);
- /**
- *
- * @param artID long
- * @return List
- */
- public List findNotesByArtID(long artID);
- /**
- *
- * @param blogID long
- * @return int
- */
- public int getNoteCountByBlogID(long blogID);
- /**
- *
- * @param blogID long
- * @param firstResult int
- * @param maxResults int
- * @return List
- */
- public List getNotesByBlogID(long blogID, int firstResult, int maxResults);
- /**
- *
- * @param note Note
- */
- public void removeNote(Note note);
- }