Package com.day.crx.statistics.query
Class RecentQueriesReport
- java.lang.Object
-
- com.day.crx.statistics.Report
-
- com.day.crx.statistics.query.RecentQueriesReport
-
public class RecentQueriesReport extends Report
RecentQueriesReport
returns a list of the most recent queries.
-
-
Constructor Summary
Constructors Constructor Description RecentQueriesReport(java.lang.String dataPath)
Creates a new report.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Iterator
getResult(Session session)
Runs the report and returns a result iterator overObject[]
instances.int
getSize()
void
setSize(int size)
-
-
-
Method Detail
-
getResult
public java.util.Iterator getResult(Session session) throws RepositoryException
Runs the report and returns a result iterator overObject[]
instances. Returns result rows with the following objects:- Recent query
String
- Specified by:
getResult
in classReport
- Parameters:
session
- the session giving access to the workspace.- Returns:
- Iterator over
Object
results. - Throws:
RepositoryException
- if an error occurs while reading from the repository.
- Recent query
-
getSize
public int getSize()
- Returns:
- the maximum number of queries to return.
-
setSize
public void setSize(int size)
- Parameters:
size
- the maximum number of queries to return.
-
-