1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.kuali.rice.kew.stats.service;
18
19 import java.sql.SQLException;
20 import java.util.Date;
21
22 import org.apache.ojb.broker.accesslayer.LookupException;
23 import org.kuali.rice.kew.stats.Stats;
24
25
26
27
28
29
30
31 public interface StatsService {
32
33 public void NumActiveItemsReport(Stats stats) throws SQLException, LookupException;
34 public void DocumentsRoutedReport(Stats stats, Date begDate, Date endDate) throws SQLException, LookupException;
35 public void NumberOfDocTypesReport(Stats stats) throws SQLException, LookupException;
36 public void NumUsersReport(Stats stats) throws SQLException, LookupException;
37 public void NumInitiatedDocsByDocTypeReport(Stats stats) throws SQLException, LookupException;
38
39 }