www in docker support

This commit is contained in:
MaddoScientisto 2026-04-22 18:41:37 +02:00
commit c227fce036
2145 changed files with 399596 additions and 58 deletions

View file

@ -0,0 +1,25 @@
package it.acxent.bank;
import it.acxent.common.Parm;
import it.acxent.db.ApplParmFull;
import it.acxent.util.Debug;
public abstract class _BankAdapter extends Debug {
private ApplParmFull ap;
public static final String DEFAULT_OK_KO_PAGE = "payRes.jsp";
public ApplParmFull getApFull() {
return this.ap;
}
public void setAp(ApplParmFull ap) {
this.ap = ap;
}
public Parm getParm(String theKey) {
if (getApFull() != null)
return getApFull().getParm(theKey);
return new Parm();
}
}