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.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.comparator.WorkflowComparatorFactory;
020    
021    /**
022     * @author Shuyang Zhou
023     */
024    public class WorkflowComparatorFactoryProxyBean
025            extends BaseProxyBean implements WorkflowComparatorFactory {
026    
027            @Override
028            public OrderByComparator getDefinitionNameComparator(boolean ascending) {
029                    throw new UnsupportedOperationException();
030            }
031    
032            @Override
033            public OrderByComparator getInstanceEndDateComparator(boolean ascending) {
034                    throw new UnsupportedOperationException();
035            }
036    
037            @Override
038            public OrderByComparator getInstanceStartDateComparator(boolean ascending) {
039                    throw new UnsupportedOperationException();
040            }
041    
042            @Override
043            public OrderByComparator getInstanceStateComparator(boolean ascending) {
044                    throw new UnsupportedOperationException();
045            }
046    
047            @Override
048            public OrderByComparator getLogCreateDateComparator(boolean ascending) {
049                    throw new UnsupportedOperationException();
050            }
051    
052            @Override
053            public OrderByComparator getLogUserIdComparator(boolean ascending) {
054                    throw new UnsupportedOperationException();
055            }
056    
057            @Override
058            public OrderByComparator getTaskCompletionDateComparator(
059                    boolean ascending) {
060    
061                    throw new UnsupportedOperationException();
062            }
063    
064            @Override
065            public OrderByComparator getTaskCreateDateComparator(boolean ascending) {
066                    throw new UnsupportedOperationException();
067            }
068    
069            @Override
070            public OrderByComparator getTaskDueDateComparator(boolean ascending) {
071                    throw new UnsupportedOperationException();
072            }
073    
074            @Override
075            public OrderByComparator getTaskNameComparator(boolean ascending) {
076                    throw new UnsupportedOperationException();
077            }
078    
079            @Override
080            public OrderByComparator getTaskUserIdComparator(boolean ascending) {
081                    throw new UnsupportedOperationException();
082            }
083    
084    }