-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLeaveServerAPI.java
More file actions
48 lines (34 loc) · 996 Bytes
/
Copy pathLeaveServerAPI.java
File metadata and controls
48 lines (34 loc) · 996 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package turner;
/**
* @author Jonathan Turner
* This class represents the businesss logic of the Leave Mgt system.
*
*/
public class LeaveServerAPI {
static LeavePersistence leavePersistence = new LeavePersistence();
public LeaveRequest[] get (String EmployeeID)
{
authenticate(EmployeeID);
return leavePersistence.get(EmployeeID);
}
public boolean put(String EmployeeID, LeaveRequest[] leaves)
{
authenticate(EmployeeID);
return leavePersistence.put(EmployeeID, leaves);
//error handling
}
public boolean delete(String EmployeeID, LeaveRequest[] leaves)
{
authenticate(EmployeeID);
return leavePersistence.delete(EmployeeID, leaves);
//error handling
}
public boolean approve(String EmployeeID, LeaveRequest[] leaves)
{
authenticate(EmployeeID);
return leavePersistence.approve(EmployeeID, leaves);
//error handling
}
private void authenticate(String EmployeeID)
{}
}