LOG.debug("About to reactivate " + username);
SyncopeUser user = userDAO.find(username);
if (user == null) {
throw new NotFoundException("User " + username);
}
return setStatus(user, null, resourceNames, performLocally, performRemotely, true, "reactivate");
}