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, Map<String, Serializable> context) {
43  
44          throw new UnsupportedOperationException();
45      }
46  
47      public WorkflowTask assignWorkflowTaskToUser(
48          long companyId, long userId, long workflowTaskId, long assigneeUserId,
49          String comment, Date dueDate, Map<String, Serializable> context) {
50  
51          throw new UnsupportedOperationException();
52      }
53  
54      public WorkflowTask completeWorkflowTask(
55          long companyId, long userId, long workflowTaskId, String transitionName,
56          String comment, Map<String, Serializable> context) {
57  
58          throw new UnsupportedOperationException();
59      }
60  
61      public List<String> getNextTransitionNames(
62          long companyId, long userId, long workflowTaskId) {
63  
64          throw new UnsupportedOperationException();
65      }
66  
67      public long[] getPooledActorsIds(long companyId, long workflowTaskId) {
68          throw new UnsupportedOperationException();
69      }
70  
71      public WorkflowTask getWorkflowTask(long companyId, long workflowTaskId) {
72          throw new UnsupportedOperationException();
73      }
74  
75      public int getWorkflowTaskCount(long companyId, Boolean completed) {
76          throw new UnsupportedOperationException();
77      }
78  
79      public int getWorkflowTaskCountByRole(
80          long companyId, long roleId, Boolean completed) {
81  
82          throw new UnsupportedOperationException();
83      }
84  
85      public int getWorkflowTaskCountByUser(
86          long companyId, long userId, Boolean completed) {
87  
88          throw new UnsupportedOperationException();
89      }
90  
91      public int getWorkflowTaskCountByUserRoles(
92          long companyId, long userId, Boolean completed) {
93  
94          throw new UnsupportedOperationException();
95      }
96  
97      public int getWorkflowTaskCountByWorkflowInstance(
98          long companyId, long workflowInstanceId, Boolean completed) {
99  
100         throw new UnsupportedOperationException();
101     }
102 
103     public List<WorkflowTask> getWorkflowTasks(
104         long companyId, Boolean completed, int start, int end,
105         OrderByComparator orderByComparator) {
106 
107         throw new UnsupportedOperationException();
108     }
109 
110     public List<WorkflowTask> getWorkflowTasksByRole(
111         long companyId, long roleId, Boolean completed, int start, int end,
112         OrderByComparator orderByComparator) {
113 
114         throw new UnsupportedOperationException();
115     }
116 
117     public List<WorkflowTask> getWorkflowTasksByUser(
118         long companyId, long userId, Boolean completed, int start, int end,
119         OrderByComparator orderByComparator) {
120 
121         throw new UnsupportedOperationException();
122     }
123 
124     public List<WorkflowTask> getWorkflowTasksByUserRoles(
125         long companyId, long userId, Boolean completed, int start, int end,
126         OrderByComparator orderByComparator) {
127 
128         throw new UnsupportedOperationException();
129     }
130 
131     public List<WorkflowTask> getWorkflowTasksByWorkflowInstance(
132         long companyId, long workflowInstanceId, Boolean completed, int start,
133         int end, OrderByComparator orderByComparator) {
134 
135         throw new UnsupportedOperationException();
136     }
137 
138     public List<WorkflowTask> search(
139         long companyId, long userId, String keywords, Boolean completed,
140         Boolean searchByUserRoles, int start, int end,
141         OrderByComparator orderByComparator) {
142 
143         throw new UnsupportedOperationException();
144     }
145 
146     public List<WorkflowTask> search(
147         long companyId, long userId, String name, String type, String state,
148         Date dueDateGT, Date dueDateLT, Boolean completed,
149         Boolean searchByUserRoles, boolean andOperator, int start, int end,
150         OrderByComparator orderByComparator) {
151 
152         throw new UnsupportedOperationException();
153     }
154 
155     public int searchCount(
156         long companyId, long userId, String keywords, Boolean completed,
157         Boolean searchByUserRoles) {
158 
159         throw new UnsupportedOperationException();
160     }
161 
162     public int searchCount(
163         long companyId, long userId, String name, String type, String state,
164         Date dueDateGT, Date dueDateLT, Boolean completed,
165         Boolean searchByUserRoles, boolean andOperator) {
166 
167         throw new UnsupportedOperationException();
168     }
169 
170     public WorkflowTask updateDueDate(
171         long companyId, long userId, long workflowTaskId, String comment,
172         Date dueDate) {
173 
174         throw new UnsupportedOperationException();
175     }
176 
177 }