1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.kuali.rice.kew.docsearch.dao;
18
19 import java.util.List;
20
21 import org.kuali.rice.kew.docsearch.DocSearchCriteriaDTO;
22 import org.kuali.rice.kew.docsearch.DocSearchDTO;
23 import org.kuali.rice.kew.docsearch.DocumentSearchGenerator;
24
25
26 public interface DocumentSearchDAO {
27 public List<DocSearchDTO> getListBoundedByCritera(DocumentSearchGenerator documentSearchGenerator, DocSearchCriteriaDTO criteria, String principalId);
28 public List<DocSearchDTO> getList(DocumentSearchGenerator docSearchGenerator,DocSearchCriteriaDTO criteria, String principalId);
29 }