(no commit message)
[cdmlib.git] / cdmlib-remote / src / main / java / eu / etaxonomy / cdm / remote / dto / ResultSetPageSTO.java
1 /**
2 * Copyright (C) 2007 EDIT
3 * European Distributed Institute of Taxonomy
4 * http://www.e-taxonomy.eu
5 *
6 * The contents of this file are subject to the Mozilla Public License Version 1.1
7 * See LICENSE.TXT at the top of this package for the full license terms.
8 */
9
10 package eu.etaxonomy.cdm.remote.dto;
11
12 import java.util.ArrayList;
13 import java.util.List;
14
15 /**
16 * Instances of this class are subsets of the total set of results returned by a search query.
17 *
18 * @author a.kohlbecker
19 * @version 1.0
20 * @created 15.02.2008 15:26:06
21 *
22 */
23 public class ResultSetPageSTO {
24
25 /**
26 * total number of results returned
27 */
28 private long totalResultsCount;
29 /**
30 * A list containing the items for this result page
31 */
32 private List<BaseSTO> results = new ArrayList<BaseSTO>();
33 }