Hello hello = new Hello();
PrintWriter out = response.getWriter();
out.println("<html><head><title>Sample Wab Application Bundle</title></head></html>");
out.println("<body><h1>");
out.println(hello.sayHello("Web Application Bundle"));
out.println("</h1></body></html>");
}
}