in src/main/java/org/apache/sling/auth/core/impl/AuthenticatorWebConsolePlugin.java [84:109]
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException {
try {
PrintWriter pw = resp.getWriter();
pw.println("<table class='content' width='100%' cellspacing='0' cellpadding='0'>");
printAuthenticationHandler(pw);
pw.println("<tr><td colspan='2'> </td></tr>");
printAuthenticationRequirements(pw);
pw.println("<tr><td colspan='2'> </td></tr>");
printAuthenticationConfiguration(pw);
pw.println("</table>");
} catch (IOException ioe) {
log("Unexpected exception caught", ioe);
try {
resp.sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
} catch (IOException ioe2) {
log("Unexpected exception caught while sending the error", ioe2);
}
}
}