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.WorkflowDefinition;
20  import com.liferay.portal.kernel.workflow.WorkflowDefinitionManager;
21  
22  import java.io.InputStream;
23  
24  import java.util.List;
25  
26  /**
27   * <a href="WorkflowDefinitionManagerProxyBean.java.html"><b><i>View Source</i>
28   * </b></a>
29   *
30   * @author Micha Kiener
31   * @author Shuyang Zhou
32   * @author Brian Wing Shun Chan
33   */
34  public class WorkflowDefinitionManagerProxyBean
35      extends BaseProxyBean implements WorkflowDefinitionManager {
36  
37      public WorkflowDefinition deployWorkflowDefinition(
38          long companyId, long userId, String name, InputStream inputStream) {
39  
40          throw new UnsupportedOperationException();
41      }
42  
43      public WorkflowDefinition getWorkflowDefinition(
44          long companyId, String name, int version) {
45  
46          throw new UnsupportedOperationException();
47      }
48  
49      public int getWorkflowDefinitionCount(long companyId) {
50          throw new UnsupportedOperationException();
51      }
52  
53      public int getWorkflowDefinitionCount(long companyId, String name) {
54          throw new UnsupportedOperationException();
55      }
56  
57      public List<WorkflowDefinition> getWorkflowDefinitions(
58          long companyId, int start, int end,
59          OrderByComparator orderByComparator) {
60  
61          throw new UnsupportedOperationException();
62      }
63  
64      public List<WorkflowDefinition> getWorkflowDefinitions(
65          long companyId, String name, int start, int end,
66          OrderByComparator orderByComparator) {
67  
68          throw new UnsupportedOperationException();
69      }
70  
71      public void undeployWorkflowDefinition(
72          long companyId, long userId, String name, int version) {
73  
74          throw new UnsupportedOperationException();
75      }
76  
77  }