*/
public List<UserPrincipal> listUsers() {
List<UserPrincipal> result = new ArrayList<UserPrincipal>();
for (String userNames : users.keySet()) {
UserPrincipal userPrincipal = new UserPrincipal(userNames);
result.add(userPrincipal);
}
return result;
}