]> source.dussan.org Git - archiva.git/blob
eae448aedbe756cb7dabee35b76f283b9135750e
[archiva.git] /
1 package org.apache.archiva.redback.integration.eXc;
2
3 /*
4  * Licensed to the Apache Software Foundation (ASF) under one
5  * or more contributor license agreements.  See the NOTICE file
6  * distributed with this work for additional information
7  * regarding copyright ownership.  The ASF licenses this file
8  * to you under the Apache License, Version 2.0 (the
9  * "License"); you may not use this file except in compliance
10  * with the License.  You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  * KIND, either express or implied.  See the License for the
18  * specific language governing permissions and limitations
19  * under the License.
20  */
21
22 import java.util.Collection;
23 import java.util.Collections;
24 import java.util.List;
25
26 import org.apache.archiva.redback.integration.util.UserComparator;
27 import org.extremecomponents.table.callback.ProcessRowsCallback;
28 import org.extremecomponents.table.core.TableConstants;
29 import org.extremecomponents.table.core.TableModel;
30 import org.extremecomponents.table.limit.Sort;
31
32 /**
33  * ProcessUserRowsCallback - Efficient and safe sort callback for user manager provided user lists.
34  *
35  * @author <a href="mailto:joakim@erdfelt.com">Joakim Erdfelt</a>
36  * @version $Id$
37  */
38 public class ProcessUserRowsCallback
39     extends ProcessRowsCallback
40 {
41
42     @SuppressWarnings("unchecked")
43     public Collection sortRows( TableModel model, Collection rows )
44         throws Exception
45     {
46         boolean sorted = model.getLimit().isSorted();
47
48         if ( !sorted )
49         {
50             return rows;
51         }
52
53         Sort sort = model.getLimit().getSort();
54         String property = sort.getProperty();
55         String sortOrder = sort.getSortOrder();
56
57         System.out.println( "SORTING: " + property + " - " + sortOrder );
58
59         UserComparator comparator = new UserComparator( property, TableConstants.SORT_ASC.equals( sortOrder ) );
60         Collections.sort( (List) rows, comparator );
61
62         return rows;
63     }
64
65 }