package it.acxent.anag.servlet; import it.acxent.anag.Ottoxmille; import it.acxent.anag.OttoxmilleCR; import it.acxent.db.CRAdapter; import it.acxent.db.DBAdapter; import it.acxent.servlet.AblServletSvlt; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; @WebServlet(urlPatterns = {"/admin/anagConfig/Ottoxmille.abl"}) public class OttoxmilleSvlt extends AblServletSvlt { private static final long serialVersionUID = -6080652564320276641L; protected void fillComboAfterDetail(DBAdapter bean, HttpServletRequest req, HttpServletResponse res) {} protected void fillComboAfterSearch(CRAdapter CR, HttpServletRequest req, HttpServletResponse res) {} protected DBAdapter getBean(HttpServletRequest req) { return new Ottoxmille(getApFull(req)); } protected CRAdapter getBeanCR(HttpServletRequest req) { return new OttoxmilleCR(getApFull(req)); } protected boolean isSimpleServlet(HttpServletRequest req) { return true; } }