01: /*
02: * ProjectManagement
03: *
04: * Enhydra super-servlet specification object
05: *
06: */
07: package projectmanagement.spec.project;
08:
09: import projectmanagement.spec.ProjectManagementException;
10:
11: public interface ProjectManager {
12:
13: public Project[] getAllProjects() throws ProjectManagementException;
14:
15: public Project findProjectByID(String id)
16: throws ProjectManagementException;
17:
18: public Project[] getAllProjectsForCustomer(String customerID)
19: throws ProjectManagementException;
20:
21: public Project getProject() throws ProjectManagementException;
22: }
|