001    /**
002     * Copyright (c) 2000-2012 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portal.workflow;
016    
017    import com.liferay.portal.kernel.messaging.proxy.BaseProxyBean;
018    import com.liferay.portal.kernel.util.OrderByComparator;
019    import com.liferay.portal.kernel.workflow.WorkflowInstance;
020    import com.liferay.portal.kernel.workflow.WorkflowInstanceManager;
021    
022    import java.io.Serializable;
023    
024    import java.util.List;
025    import java.util.Map;
026    
027    /**
028     * @author Micha Kiener
029     */
030    public class WorkflowInstanceManagerProxyBean
031            extends BaseProxyBean implements WorkflowInstanceManager {
032    
033            public void deleteWorkflowInstance(
034                    long companyId, long workflowInstanceId) {
035    
036                    throw new UnsupportedOperationException();
037            }
038    
039            public List<String> getNextTransitionNames(
040                    long companyId, long userId, long workflowInstanceId) {
041    
042                    throw new UnsupportedOperationException();
043            }
044    
045            public WorkflowInstance getWorkflowInstance(
046                    long companyId, long workflowInstanceId) {
047    
048                    throw new UnsupportedOperationException();
049            }
050    
051            public int getWorkflowInstanceCount(
052                    long companyId, Long userId, String assetClassName, Long assetClassPK,
053                    Boolean completed) {
054    
055                    throw new UnsupportedOperationException();
056            }
057    
058            public int getWorkflowInstanceCount(
059                    long companyId, Long userId, String[] assetClassNames,
060                    Boolean completed) {
061    
062                    throw new UnsupportedOperationException();
063            }
064    
065            public int getWorkflowInstanceCount(
066                    long companyId, String workflowDefinitionName,
067                    Integer workflowDefinitionVersion, Boolean completed) {
068    
069                    throw new UnsupportedOperationException();
070            }
071    
072            public List<WorkflowInstance> getWorkflowInstances(
073                    long companyId, Long userId, String assetClassName, Long assetClassPK,
074                    Boolean completed, int start, int end,
075                    OrderByComparator orderByComparator) {
076    
077                    throw new UnsupportedOperationException();
078            }
079    
080            public List<WorkflowInstance> getWorkflowInstances(
081                    long companyId, Long userId, String[] assetClassNames,
082                    Boolean completed, int start, int end,
083                    OrderByComparator orderByComparator) {
084    
085                    throw new UnsupportedOperationException();
086            }
087    
088            public List<WorkflowInstance> getWorkflowInstances(
089                    long companyId, String workflowDefinitionName,
090                    Integer workflowDefinitionVersion, Boolean completed, int start,
091                    int end, OrderByComparator orderByComparator) {
092    
093                    throw new UnsupportedOperationException();
094            }
095    
096            public WorkflowInstance signalWorkflowInstance(
097                    long companyId, long userId, long workflowInstanceId,
098                    String transitionName, Map<String, Serializable> workflowContext) {
099    
100                    throw new UnsupportedOperationException();
101            }
102    
103            public WorkflowInstance startWorkflowInstance(
104                    long companyId, long groupId, long userId,
105                    String workflowDefinitionName, Integer workflowDefinitionVersion,
106                    String transitionName, Map<String, Serializable> workflowContext) {
107    
108                    throw new UnsupportedOperationException();
109            }
110    
111            public WorkflowInstance updateWorkflowContext(
112                    long companyId, long workflowInstanceId,
113                    Map<String, Serializable> workflowContext) {
114    
115                    throw new UnsupportedOperationException();
116            }
117    
118    }