| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| ActionListService | 
  | 
  | 0.0;0 | 
| 1 |  /* | |
| 2 |   * Copyright 2011 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/ecl1.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.api.actionlist; | |
| 17 | ||
| 18 | ||
| 19 | public interface ActionListService {  | |
| 20 | ||
| 21 |          // TODO add the following methods to this service | |
| 22 | ||
| 23 |  //        public Integer getUserActionItemCount( | |
| 24 |  //                        @WebParam(name = "principalId") String principalId) | |
| 25 |  //                        throws WorkflowException; | |
| 26 |  // | |
| 27 |  //        public ActionItemDTO[] getAllActionItems( | |
| 28 |  //                        @WebParam(name = "documentId") String documentId) | |
| 29 |  //                        throws WorkflowException; | |
| 30 |  // | |
| 31 |  //        public ActionItemDTO[] getActionItems( | |
| 32 |  //                        @WebParam(name = "documentId") String documentId, | |
| 33 |  //                        @WebParam(name = "actionRequestedCodes") String[] actionRequestedCodes) | |
| 34 |  //                        throws WorkflowException; | |
| 35 |  // | |
| 36 |  //        // added for KS per Scott | |
| 37 |  //        ActionItemDTO[] getActionItemsForPrincipal( | |
| 38 |  //                        @WebParam(name = "principalId") String principalId) | |
| 39 |  //                        throws WorkflowException; | |
| 40 | ||
| 41 | }  |