user.setLogin(HttpRequestUtils.getValue(request, FIELD_LOGIN));
user.setMail(HttpRequestUtils.getValue(request, FIELD_MAIL));
user.setName(HttpRequestUtils.getValue(request, FIELD_NAME));
// Acciones
PostgreSqlAuthenticationImpl up = (PostgreSqlAuthenticationImpl) AuthenticationFactory.getInstance(getWorkspace());
up.add(user, HttpRequestUtils.getValue(request, FIELD_PASSWORD));
response.sendRedirect("UserManagerPage");
return pc;
}
catch (UserAlreadyExistsException ex)