1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kew.dto; |
17 | |
|
18 | |
import java.io.Serializable; |
19 | |
import java.util.ArrayList; |
20 | |
import java.util.List; |
21 | |
|
22 | |
|
23 | |
|
24 | |
|
25 | |
|
26 | |
|
27 | 0 | public class DocumentSearchResultDTO implements Serializable { |
28 | |
|
29 | |
private static final long serialVersionUID = -2555393598328802683L; |
30 | |
|
31 | 0 | private List<DocumentSearchResultRowDTO> searchResults = new ArrayList<DocumentSearchResultRowDTO>(); |
32 | 0 | private boolean isOverThreshold = false; |
33 | 0 | private Integer securityFilteredRows = Integer.valueOf(0); |
34 | |
|
35 | |
public List<DocumentSearchResultRowDTO> getSearchResults() { |
36 | 0 | return this.searchResults; |
37 | |
} |
38 | |
|
39 | |
public void setSearchResults(List<DocumentSearchResultRowDTO> searchResults) { |
40 | 0 | this.searchResults = searchResults; |
41 | 0 | } |
42 | |
|
43 | |
public boolean isOverThreshold() { |
44 | 0 | return this.isOverThreshold; |
45 | |
} |
46 | |
|
47 | |
public void setOverThreshold(boolean isOverThreshold) { |
48 | 0 | this.isOverThreshold = isOverThreshold; |
49 | 0 | } |
50 | |
|
51 | |
public Integer getSecurityFilteredRows() { |
52 | 0 | return this.securityFilteredRows; |
53 | |
} |
54 | |
|
55 | |
public void setSecurityFilteredRows(Integer securityFilteredRows) { |
56 | 0 | this.securityFilteredRows = securityFilteredRows; |
57 | 0 | } |
58 | |
|
59 | |
} |