001    /**
002     * Copyright (c) 2000-2011 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.portlet.softwarecatalog.util.comparator;
016    
017    import com.liferay.portal.kernel.util.DateUtil;
018    import com.liferay.portal.kernel.util.OrderByComparator;
019    import com.liferay.portlet.softwarecatalog.model.SCProductEntry;
020    
021    /**
022     * @author Brian Wing Shun Chan
023     */
024    public class ProductEntryCreateDateComparator extends OrderByComparator {
025    
026            public static final String ORDER_BY_ASC = "SCProductEntry.createDate ASC";
027    
028            public static final String ORDER_BY_DESC = "SCProductEntry.createDate DESC";
029    
030            public static final String[] ORDER_BY_FIELDS = {"createDate"};
031    
032            public ProductEntryCreateDateComparator() {
033                    this(false);
034            }
035    
036            public ProductEntryCreateDateComparator(boolean ascending) {
037                    _ascending = ascending;
038            }
039    
040            @Override
041            public int compare(Object obj1, Object obj2) {
042                    SCProductEntry productEntry1 = (SCProductEntry)obj1;
043                    SCProductEntry productEntry2 = (SCProductEntry)obj2;
044    
045                    int value = DateUtil.compareTo(
046                            productEntry1.getCreateDate(), productEntry2.getCreateDate());
047    
048                    if (_ascending) {
049                            return value;
050                    }
051                    else {
052                            return -value;
053                    }
054            }
055    
056            @Override
057            public String getOrderBy() {
058                    if (_ascending) {
059                            return ORDER_BY_ASC;
060                    }
061                    else {
062                            return ORDER_BY_DESC;
063                    }
064            }
065    
066            @Override
067            public String[] getOrderByFields() {
068                    return ORDER_BY_FIELDS;
069            }
070    
071            @Override
072            public boolean isAscending() {
073                    return _ascending;
074            }
075    
076            private boolean _ascending;
077    
078    }