01: /*
02: * ProjectManagement
03: *
04: * Enhydra super-servlet specification object
05: *
06: */
07: package projectmanagement.spec.customer;
08:
09: import projectmanagement.spec.ProjectManagementException;
10:
11: public interface CustomerManager {
12:
13: public Customer[] getAllCustomers()
14: throws ProjectManagementException;
15:
16: public Customer findCustomerByID(String id)
17: throws ProjectManagementException;
18:
19: public Customer getCustomer() throws ProjectManagementException;
20:
21: }
|