01: package de.schlund.pfixcore.example.bank.context;
02:
03: import de.schlund.pfixcore.example.bank.model.Customer;
04: import de.schlund.pfixcore.workflow.ContextResource;
05:
06: public interface ContextCustomer extends ContextResource {
07:
08: public void setCustomer(Customer customer);
09:
10: public Customer getCustomer();
11:
12: }
|