View Javadoc

1   /*
2   Copyright 2011-2014 AGH-UST, http://www.agh.edu.pl
3   Faculty of Computer Science, Electronics and Telecommunications
4   Department of Computer Science 
5   
6   See the NOTICE file distributed with this work for additional
7   information regarding copyright ownership
8   
9   Licensed under the Apache License, Version 2.0 (the "License");
10  you may not use this file except in compliance with the License.
11  You may obtain a copy of the License at
12  
13    http://www.apache.org/licenses/LICENSE-2.0
14  
15  Unless required by applicable law or agreed to in writing, software
16  distributed under the License is distributed on an "AS IS" BASIS,
17  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  See the License for the specific language governing permissions and
19  limitations under the License.
20  */
21  package org.universAAL.ri.gateway.eimanager.impl;
22  
23  import java.util.Comparator;
24  
25  import org.universAAL.ri.gateway.eimanager.ExportOperationInterceptor;
26  
27  public class ExportInterceptorsComparator implements Comparator<ExportOperationInterceptor> {
28  
29  	public int compare(ExportOperationInterceptor o1,
30  			ExportOperationInterceptor o2) {
31  		return Integer.valueOf(o1.getPriority()).compareTo(o2.getPriority());
32  	}
33  
34  }