//Remove from users
listUserStatement = connection.prepareStatement(selectUsersQuery);
usersResultSet = listUserStatement.executeQuery();
while (!usersResultSet.next()) {
String username = usersResultSet.getString("USERNAME");
users.add(new UserPrincipal(username));
}
} catch (SQLException e) {
logger.error("Error executiong statement", e);
} finally {
try {