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.WorkflowInstance;
20  import com.liferay.portal.kernel.workflow.WorkflowInstanceManager;
21  
22  import java.io.Serializable;
23  
24  import java.util.List;
25  import java.util.Map;
26  
27  /**
28   * <a href="WorkflowInstanceManagerProxyBean.java.html"><b><i>View Source</i>
29   * </b></a>
30   *
31   * @author Micha Kiener
32   */
33  public class WorkflowInstanceManagerProxyBean
34      extends BaseProxyBean implements WorkflowInstanceManager {
35  
36      public void deleteWorkflowInstance(
37          long companyId, long workflowInstanceId) {
38  
39          throw new UnsupportedOperationException();
40      }
41  
42      public List<String> getNextTransitionNames(
43          long companyId, long userId, long workflowInstanceId) {
44  
45          throw new UnsupportedOperationException();
46      }
47  
48      public WorkflowInstance getWorkflowInstance(
49          long companyId, long workflowInstanceId) {
50  
51          throw new UnsupportedOperationException();
52      }
53  
54      public int getWorkflowInstanceCount(
55          long companyId, String workflowDefinitionName,
56          Integer workflowDefinitionVersion, Boolean completed) {
57  
58          throw new UnsupportedOperationException();
59      }
60  
61      public List<WorkflowInstance> getWorkflowInstances(
62          long companyId, String workflowDefinitionName,
63          Integer workflowDefinitionVersion, Boolean completed, int start,
64          int end, OrderByComparator orderByComparator) {
65  
66          throw new UnsupportedOperationException();
67      }
68  
69      public WorkflowInstance signalWorkflowInstance(
70          long companyId, long userId, long workflowInstanceId,
71          String transitionName, Map<String, Serializable> context) {
72  
73          throw new UnsupportedOperationException();
74      }
75  
76      public WorkflowInstance startWorkflowInstance(
77          long companyId, long userId, String workflowDefinitionName,
78          Integer workflowDefinitionVersion, String transitionName,
79          Map<String, Serializable> context) {
80  
81          throw new UnsupportedOperationException();
82      }
83  
84      public WorkflowInstance updateContext(
85          long companyId, long workflowInstanceId,
86          Map<String, Serializable> context) {
87  
88          throw new UnsupportedOperationException();
89      }
90  
91  }