1 17 package org.columba.mail.util; 18 19 import java.util.Comparator ; 20 21 22 public class AuthenticationSecurityComparator implements Comparator { 23 24 public int compare(Object arg0, Object arg1) { 25 int code1 = ((Integer ) arg0).intValue(); 26 int code2 = ((Integer ) arg1).intValue(); 27 28 return AuthenticationManager.compare(code1,code2); 29 } 30 } 31 | Popular Tags |