response.setStatus(HttpServletResponse.SC_MOVED_TEMPORARILY);
response.sendRedirect(response.encodeRedirectURL(url));
} catch (IOException ioe) {
LOGGER.log(Level.WARNING, "jmac.servlet_redirect_failed", ioe);
AuthException ae = new AuthException();
ae.initCause(ioe);
throw ae;
}
return AuthStatus.SEND_CONTINUE;
}