001    /**
002     * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
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            @Override
034            public void deleteWorkflowInstance(
035                    long companyId, long workflowInstanceId) {
036    
037                    throw new UnsupportedOperationException();
038            }
039    
040            @Override
041            public List<String> getNextTransitionNames(
042                    long companyId, long userId, long workflowInstanceId) {
043    
044                    throw new UnsupportedOperationException();
045            }
046    
047            @Override
048            public WorkflowInstance getWorkflowInstance(
049                    long companyId, long workflowInstanceId) {
050    
051                    throw new UnsupportedOperationException();
052            }
053    
054            @Override
055            public int getWorkflowInstanceCount(
056                    long companyId, Long userId, String assetClassName, Long assetClassPK,
057                    Boolean completed) {
058    
059                    throw new UnsupportedOperationException();
060            }
061    
062            @Override
063            public int getWorkflowInstanceCount(
064                    long companyId, Long userId, String[] assetClassNames,
065                    Boolean completed) {
066    
067                    throw new UnsupportedOperationException();
068            }
069    
070            @Override
071            public int getWorkflowInstanceCount(
072                    long companyId, String workflowDefinitionName,
073                    Integer workflowDefinitionVersion, Boolean completed) {
074    
075                    throw new UnsupportedOperationException();
076            }
077    
078            @Override
079            public List<WorkflowInstance> getWorkflowInstances(
080                    long companyId, Long userId, String assetClassName, Long assetClassPK,
081                    Boolean completed, int start, int end,
082                    OrderByComparator orderByComparator) {
083    
084                    throw new UnsupportedOperationException();
085            }
086    
087            @Override
088            public List<WorkflowInstance> getWorkflowInstances(
089                    long companyId, Long userId, String[] assetClassNames,
090                    Boolean completed, int start, int end,
091                    OrderByComparator orderByComparator) {
092    
093                    throw new UnsupportedOperationException();
094            }
095    
096            @Override
097            public List<WorkflowInstance> getWorkflowInstances(
098                    long companyId, String workflowDefinitionName,
099                    Integer workflowDefinitionVersion, Boolean completed, int start,
100                    int end, OrderByComparator orderByComparator) {
101    
102                    throw new UnsupportedOperationException();
103            }
104    
105            @Override
106            public WorkflowInstance signalWorkflowInstance(
107                    long companyId, long userId, long workflowInstanceId,
108                    String transitionName, Map<String, Serializable> workflowContext) {
109    
110                    throw new UnsupportedOperationException();
111            }
112    
113            @Override
114            public WorkflowInstance startWorkflowInstance(
115                    long companyId, long groupId, long userId,
116                    String workflowDefinitionName, Integer workflowDefinitionVersion,
117                    String transitionName, Map<String, Serializable> workflowContext) {
118    
119                    throw new UnsupportedOperationException();
120            }
121    
122            @Override
123            public WorkflowInstance updateWorkflowContext(
124                    long companyId, long workflowInstanceId,
125                    Map<String, Serializable> workflowContext) {
126    
127                    throw new UnsupportedOperationException();
128            }
129    
130    }