use of io.bastillion.manage.model.SortedSet in project KeyBox by skavanagh.
the class AuthKeysKtrl method manageViewKeys.
@Kontrol(path = "/manage/viewKeys", method = MethodType.GET)
public String manageViewKeys() throws ServletException {
try {
profileList = ProfileDB.getAllProfiles();
userList = UserDB.getUserSet(new SortedSet(SessionAuditDB.SORT_BY_USERNAME)).getItemList();
sortedSet = PublicKeyDB.getPublicKeySet(sortedSet);
} catch (SQLException | GeneralSecurityException ex) {
log.error(ex.toString(), ex);
throw new ServletException(ex.toString(), ex);
}
return "/manage/view_keys.html";
}
Aggregations