1 /**
2 * Copyright 2005-2012 The Kuali Foundation
3 *
4 * Licensed under the Educational Community License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.opensource.org/licenses/ecl2.php
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package org.kuali.rice.kew.quicklinks.service;
17
18 import org.kuali.rice.core.api.util.KeyValue;
19 import org.kuali.rice.kew.quicklinks.ActionListStats;
20 import org.kuali.rice.kew.quicklinks.InitiatedDocumentType;
21 import org.kuali.rice.kew.quicklinks.WatchedDocument;
22
23 import java.util.List;
24
25
26 /**
27 * A service providing data access to Quick Links information. The Quick
28 * Links provide quick information and access to various functions
29 * in the Quick Links GUI of the web application.
30 *
31 * @author Kuali Rice Team (rice.collab@kuali.org)
32 */
33 public interface QuickLinksService {
34 public List<WatchedDocument> getWatchedDocuments(String principalId);
35 public List<KeyValue> getRecentSearches(String principalId);
36 public List<KeyValue> getNamedSearches(String principalId);
37 public List<ActionListStats> getActionListStats(String principalId);
38 public List<InitiatedDocumentType> getInitiatedDocumentTypesList(String principalId);
39 }