01: package de.schlund.pfixcore.example.bank.context;
02:
03: import de.schlund.pfixcore.example.bank.model.Account;
04: import de.schlund.pfixcore.workflow.ContextResource;
05:
06: public interface ContextAccount extends ContextResource {
07:
08: public void setAccount(Account account);
09:
10: public Account getAccount();
11:
12: }
|