@Query
public String listUsers(long id, String to, String from, ListUsersQuery query) {
String result = null;
try {
result = new ListUsersAction(_adminAuthenticator).execute();
} catch (Exception e) {
log.log(Level.WARNING, e.getMessage(), e);
result = e.toString();
}