1 package org.apache.archiva.redback.integration.eXc;
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
12 * http://www.apache.org/licenses/LICENSE-2.0
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
22 import java.util.Collection;
23 import java.util.Collections;
24 import java.util.List;
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;
33 * ProcessUserRowsCallback - Efficient and safe sort callback for user manager provided user lists.
35 * @author <a href="mailto:joakim@erdfelt.com">Joakim Erdfelt</a>
38 public class ProcessUserRowsCallback
39 extends ProcessRowsCallback
42 @SuppressWarnings("unchecked")
43 public Collection sortRows( TableModel model, Collection rows )
46 boolean sorted = model.getLimit().isSorted();
53 Sort sort = model.getLimit().getSort();
54 String property = sort.getProperty();
55 String sortOrder = sort.getSortOrder();
57 System.out.println( "SORTING: " + property + " - " + sortOrder );
59 UserComparator comparator = new UserComparator( property, TableConstants.SORT_ASC.equals( sortOrder ) );
60 Collections.sort( (List) rows, comparator );