Package utn.frsf.gabinete.fw

Source Code of utn.frsf.gabinete.fw.Html5fwServlet

package utn.frsf.gabinete.fw;

import java.io.IOException;
import javax.servlet.http.*;

import utn.frsf.gabinete.fw.generator.PageGenerator;
import utn.frsf.gabinete.fw.sample.Auto;
import utn.frsf.gabinete.fw.sample.Entidad2;

@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));
  }
}
TOP

Related Classes of utn.frsf.gabinete.fw.Html5fwServlet

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.