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,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();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue