@SuppressWarnings("serial")
public class Html5fwServlet extends HttpServlet {
public void doGet(HttpServletRequest req, HttpServletResponse resp)
throws IOException {
PageGenerator pg = new PageGenerator();
resp.setContentType("text/html");
resp.getWriter().println(pg.getPage(Auto.class));
}