response.setHeader("Location", response.encodeRedirectURL(request.getContextPath() + this.loginURI));
response.setStatus(HttpServletResponse.SC_TEMPORARY_REDIRECT);
// rd.forward(request, response);
} catch (Exception ex) {
AuthException ae = new AuthException();
ae.initCause(ex);
throw ae;
}
return AuthStatus.SEND_CONTINUE;
}