001    /**
002     * Copyright (c) 2000-2010 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.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    }