001    /**
002     * Copyright (c) 2000-2013 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            @Override
033            public int getWorkflowLogCountByWorkflowInstance(
034                    long companyId, long workflowInstanceId, List<Integer> logTypes) {
035    
036                    throw new UnsupportedOperationException();
037            }
038    
039            @Override
040            public int getWorkflowLogCountByWorkflowTask(
041                    long companyId, long workflowTaskId, List<Integer> logTypes) {
042    
043                    throw new UnsupportedOperationException();
044            }
045    
046            @Override
047            public List<WorkflowLog> getWorkflowLogsByWorkflowInstance(
048                    long companyId, long workflowInstanceId, List<Integer> logTypes,
049                    int start, int end, OrderByComparator orderByComparator) {
050    
051                    throw new UnsupportedOperationException();
052            }
053    
054            @Override
055            public List<WorkflowLog> getWorkflowLogsByWorkflowTask(
056                    long companyId, long workflowTaskId, List<Integer> logTypes, int start,
057                    int end, OrderByComparator orderByComparator) {
058    
059                    throw new UnsupportedOperationException();
060            }
061    
062    }