public Response makeResponse(final FitNesseContext context, Request request) {
SimpleResponse response = new SimpleResponse();
HtmlPage html = context.pageFactory.newPage();
html.setTitle("Shutdown");
html.setPageTitle(new PageTitle("Shutdown"));
html.setMainTemplate("shutdownPage.vm");
response.setContent(html.html());
Thread shutdownThread = new Thread() {