www in docker support
This commit is contained in:
parent
539a848e95
commit
c227fce036
2145 changed files with 399596 additions and 58 deletions
|
|
@ -0,0 +1,27 @@
|
|||
package it.acxent.contab.servlet;
|
||||
|
||||
import it.acxent.contab.PianoConti;
|
||||
import it.acxent.contab.PianoContiCR;
|
||||
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/contabConfig/PianoConti.abl"})
|
||||
public class PianoContiSvlt extends AblServletSvlt {
|
||||
private static final long serialVersionUID = -6143176459987431155L;
|
||||
|
||||
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 PianoConti(getApFull(req));
|
||||
}
|
||||
|
||||
protected CRAdapter getBeanCR(HttpServletRequest req) {
|
||||
return new PianoContiCR(getApFull(req));
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue