1   /**
2    * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
3    *
4    * This library is free software; you can redistribute it and/or modify it under
5    * the terms of the GNU Lesser General Public License as published by the Free
6    * Software Foundation; either version 2.1 of the License, or (at your option)
7    * any later version.
8    *
9    * This library is distributed in the hope that it will be useful, but WITHOUT
10   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11   * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12   * details.
13   */
14  
15  package com.liferay.portal.workflow;
16  
17  import com.liferay.portal.kernel.messaging.proxy.BaseProxyBean;
18  import com.liferay.portal.kernel.util.OrderByComparator;
19  import com.liferay.portal.kernel.workflow.WorkflowTask;
20  import com.liferay.portal.kernel.workflow.WorkflowTaskManager;
21  
22  import java.io.Serializable;
23  
24  import java.util.Date;
25  import java.util.List;
26  import java.util.Map;
27  
28  /**
29   * <a href="WorkflowTaskManagerProxyBean.java.html"><b><i>View Source</i></b>
30   * </a>
31   *
32   * @author Micha Kiener
33   * @author Shuyang Zhou
34   * @author Brian Wing Shun Chan
35   * @author Marcellus Tavares
36   */
37  public class WorkflowTaskManagerProxyBean
38      extends BaseProxyBean implements WorkflowTaskManager {
39  
40      public WorkflowTask assignWorkflowTaskToRole(
41          long companyId, long userId, long workflowTaskId, long roleId,
42          String comment, Date dueDate,
43          Map<String, Serializable> workflowContext) {
44  
45          throw new UnsupportedOperationException();
46      }
47  
48      public WorkflowTask assignWorkflowTaskToUser(
49          long companyId, long userId, long workflowTaskId, long assigneeUserId,
50          String comment, Date dueDate,
51          Map<String, Serializable> workflowContext) {
52  
53          throw new UnsupportedOperationException();
54      }
55  
56      public WorkflowTask completeWorkflowTask(
57          long companyId, long userId, long workflowTaskId, String transitionName,
58          String comment, Map<String, Serializable> workflowContext) {
59  
60          throw new UnsupportedOperationException();
61      }
62  
63      public List<String> getNextTransitionNames(
64          long companyId, long userId, long workflowTaskId) {
65  
66          throw new UnsupportedOperationException();
67      }
68  
69      public long[] getPooledActorsIds(long companyId, long workflowTaskId) {
70          throw new UnsupportedOperationException();
71      }
72  
73      public WorkflowTask getWorkflowTask(long companyId, long workflowTaskId) {
74          throw new UnsupportedOperationException();
75      }
76  
77      public int getWorkflowTaskCount(long companyId, Boolean completed) {
78          throw new UnsupportedOperationException();
79      }
80  
81      public int getWorkflowTaskCountByRole(
82          long companyId, long roleId, Boolean completed) {
83  
84          throw new UnsupportedOperationException();
85      }
86  
87      public int getWorkflowTaskCountBySubmittingUser(
88          long companyId, long userId, Boolean completed) {
89  
90          throw new UnsupportedOperationException();
91      }
92  
93      public int getWorkflowTaskCountByUser(
94          long companyId, long userId, Boolean completed) {
95  
96          throw new UnsupportedOperationException();
97      }
98  
99      public int getWorkflowTaskCountByUserRoles(
100         long companyId, long userId, Boolean completed) {
101 
102         throw new UnsupportedOperationException();
103     }
104 
105     public int getWorkflowTaskCountByWorkflowInstance(
106         long companyId, long workflowInstanceId, Boolean completed) {
107 
108         throw new UnsupportedOperationException();
109     }
110 
111     public List<WorkflowTask> getWorkflowTasks(
112         long companyId, Boolean completed, int start, int end,
113         OrderByComparator orderByComparator) {
114 
115         throw new UnsupportedOperationException();
116     }
117 
118     public List<WorkflowTask> getWorkflowTasksByRole(
119         long companyId, long roleId, Boolean completed, int start, int end,
120         OrderByComparator orderByComparator) {
121 
122         throw new UnsupportedOperationException();
123     }
124 
125     public List<WorkflowTask> getWorkflowTasksBySubmittingUser(
126         long companyId, long userId, Boolean completed, int start, int end,
127         OrderByComparator orderByComparator) {
128 
129         throw new UnsupportedOperationException();
130     }
131 
132     public List<WorkflowTask> getWorkflowTasksByUser(
133         long companyId, long userId, Boolean completed, int start, int end,
134         OrderByComparator orderByComparator) {
135 
136         throw new UnsupportedOperationException();
137     }
138 
139     public List<WorkflowTask> getWorkflowTasksByUserRoles(
140         long companyId, long userId, Boolean completed, int start, int end,
141         OrderByComparator orderByComparator) {
142 
143         throw new UnsupportedOperationException();
144     }
145 
146     public List<WorkflowTask> getWorkflowTasksByWorkflowInstance(
147         long companyId, long workflowInstanceId, Boolean completed, int start,
148         int end, OrderByComparator orderByComparator) {
149 
150         throw new UnsupportedOperationException();
151     }
152 
153     public List<WorkflowTask> search(
154         long companyId, long userId, String keywords, Boolean completed,
155         Boolean searchByUserRoles, int start, int end,
156         OrderByComparator orderByComparator) {
157 
158         throw new UnsupportedOperationException();
159     }
160 
161     public List<WorkflowTask> search(
162         long companyId, long userId, String taskName, String assetType,
163         Date dueDateGT, Date dueDateLT, Boolean completed,
164         Boolean searchByUserRoles, boolean andOperator, int start, int end,
165         OrderByComparator orderByComparator) {
166 
167         throw new UnsupportedOperationException();
168     }
169 
170     public int searchCount(
171         long companyId, long userId, String keywords, Boolean completed,
172         Boolean searchByUserRoles) {
173 
174         throw new UnsupportedOperationException();
175     }
176 
177     public int searchCount(
178         long companyId, long userId, String taskName, String assetType,
179         Date dueDateGT, Date dueDateLT, Boolean completed,
180         Boolean searchByUserRoles, boolean andOperator) {
181 
182         throw new UnsupportedOperationException();
183     }
184 
185     public WorkflowTask updateDueDate(
186         long companyId, long userId, long workflowTaskId, String comment,
187         Date dueDate) {
188 
189         throw new UnsupportedOperationException();
190     }
191 
192 }