001    /**
002     * Copyright (c) 2000-2010 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.WorkflowLog;
020    import com.liferay.portal.kernel.workflow.WorkflowLogManager;
021    
022    import java.util.List;
023    
024    /**
025     * @author Micha Kiener
026     * @author Shuyang Zhou
027     * @author Brian Wing Shun Chan
028     */
029    public class WorkflowLogManagerProxyBean
030            extends BaseProxyBean implements WorkflowLogManager {
031    
032            public int getWorkflowLogCountByWorkflowInstance(
033                    long companyId, long workflowInstanceId, List<Integer> logTypes) {
034    
035                    throw new UnsupportedOperationException();
036            }
037    
038            public int getWorkflowLogCountByWorkflowTask(
039                    long companyId, long workflowTaskId, List<Integer> logTypes) {
040    
041                    throw new UnsupportedOperationException();
042            }
043    
044            public List<WorkflowLog> getWorkflowLogsByWorkflowInstance(
045                    long companyId, long workflowInstanceId, List<Integer> logTypes,
046                    int start, int end, OrderByComparator orderByComparator) {
047    
048                    throw new UnsupportedOperationException();
049            }
050    
051            public List<WorkflowLog> getWorkflowLogsByWorkflowTask(
052                    long companyId, long workflowTaskId, List<Integer> logTypes,
053                    int start, int end, OrderByComparator orderByComparator) {
054    
055                    throw new UnsupportedOperationException();
056            }
057    
058    }