001    /**
002     * Copyright (c) 2000-present 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.comparator;
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.WorkflowDefinition;
020    import com.liferay.portal.kernel.workflow.WorkflowInstance;
021    import com.liferay.portal.kernel.workflow.WorkflowLog;
022    import com.liferay.portal.kernel.workflow.WorkflowTask;
023    import com.liferay.portal.kernel.workflow.comparator.WorkflowComparatorFactory;
024    
025    /**
026     * @author Shuyang Zhou
027     */
028    public class WorkflowComparatorFactoryProxyBean
029            extends BaseProxyBean implements WorkflowComparatorFactory {
030    
031            @Override
032            public OrderByComparator<WorkflowDefinition> getDefinitionNameComparator(
033                    boolean ascending) {
034    
035                    throw new UnsupportedOperationException();
036            }
037    
038            @Override
039            public OrderByComparator<WorkflowInstance> getInstanceCompletedComparator(
040                    boolean ascending) {
041    
042                    throw new UnsupportedOperationException();
043            }
044    
045            @Override
046            public OrderByComparator<WorkflowInstance> getInstanceEndDateComparator(
047                    boolean ascending) {
048    
049                    throw new UnsupportedOperationException();
050            }
051    
052            @Override
053            public OrderByComparator<WorkflowInstance> getInstanceStartDateComparator(
054                    boolean ascending) {
055    
056                    throw new UnsupportedOperationException();
057            }
058    
059            @Override
060            public OrderByComparator<WorkflowInstance> getInstanceStateComparator(
061                    boolean ascending) {
062    
063                    throw new UnsupportedOperationException();
064            }
065    
066            @Override
067            public OrderByComparator<WorkflowLog> getLogCreateDateComparator(
068                    boolean ascending) {
069    
070                    throw new UnsupportedOperationException();
071            }
072    
073            @Override
074            public OrderByComparator<WorkflowLog> getLogUserIdComparator(
075                    boolean ascending) {
076    
077                    throw new UnsupportedOperationException();
078            }
079    
080            @Override
081            public OrderByComparator<WorkflowTask> getTaskCompletionDateComparator(
082                    boolean ascending) {
083    
084                    throw new UnsupportedOperationException();
085            }
086    
087            @Override
088            public OrderByComparator<WorkflowTask> getTaskCreateDateComparator(
089                    boolean ascending) {
090    
091                    throw new UnsupportedOperationException();
092            }
093    
094            @Override
095            public OrderByComparator<WorkflowTask> getTaskDueDateComparator(
096                    boolean ascending) {
097    
098                    throw new UnsupportedOperationException();
099            }
100    
101            @Override
102            public OrderByComparator<WorkflowTask> getTaskNameComparator(
103                    boolean ascending) {
104    
105                    throw new UnsupportedOperationException();
106            }
107    
108            @Override
109            public OrderByComparator<WorkflowTask> getTaskUserIdComparator(
110                    boolean ascending) {
111    
112                    throw new UnsupportedOperationException();
113            }
114    
115    }