25 lines
534 B
Java
25 lines
534 B
Java
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();
|
|
}
|
|
}
|