34 lines
1.1 KiB
Java
34 lines
1.1 KiB
Java
|
|
package it.acxent.anag.servlet;
|
||
|
|
|
||
|
|
import it.acxent.anag.RegCassa;
|
||
|
|
import it.acxent.anag.RegCassaCR;
|
||
|
|
import it.acxent.db.CRAdapter;
|
||
|
|
import it.acxent.db.DBAdapter;
|
||
|
|
import javax.servlet.annotation.WebServlet;
|
||
|
|
import javax.servlet.http.HttpServletRequest;
|
||
|
|
import javax.servlet.http.HttpServletResponse;
|
||
|
|
|
||
|
|
@WebServlet(urlPatterns = {"/admin/anagConfig/RegCassa.abl"})
|
||
|
|
public class RegCassaSvlt extends _AnagAdapterSvlt {
|
||
|
|
private static final long serialVersionUID = -7439868045390925263L;
|
||
|
|
|
||
|
|
protected void addRows(HttpServletRequest req, HttpServletResponse res) {}
|
||
|
|
|
||
|
|
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 RegCassa(getApFull(req));
|
||
|
|
}
|
||
|
|
|
||
|
|
protected CRAdapter getBeanCR(HttpServletRequest req) {
|
||
|
|
return new RegCassaCR(getApFull(req));
|
||
|
|
}
|
||
|
|
|
||
|
|
protected void prepareNewRecord(HttpServletRequest req, HttpServletResponse res) {}
|
||
|
|
|
||
|
|
protected boolean isSimpleServlet(HttpServletRequest req) {
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
}
|