Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1054 → Rev 1055

/hostadmiral/trunk/src/ak/hostadmiral/core/model/UserManager.java
326,8 → 326,17
}
}
 
public static final Integer SORT_LOGIN = new Integer(1);
public Collection listUserLogins(CollectionInfo info, int rowsPerPage, int pageNumber,
Integer[] sortingKeys, User editor, User user)
throws ModelException
{
return store.listUserLogins(info, rowsPerPage, pageNumber, sortingKeys, user);
}
 
public static final Integer SORT_LOGIN = new Integer(1);
public static final Integer SORT_LOGINS_TIME = new Integer(2);
public static final Integer SORT_LOGINS_TIME_REVERSE = new Integer(3);
 
public static final Comparator LOGIN_COMPARATOR = new LoginComparator();
public static final Comparator LOGINS_TIME_COMPARATOR = new LoginsTimeComparator();