blob: 010a46e2c3bd90338841a98f9a0c27c8e345a2b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
public class AuthorizationImpl implements AuthorizationAdmin {
/* ========== interface Authorization ============*/
public boolean mayPerform(String user, String action) {
System.out.println("mayPerform() executing");
return true;
}
/* ========== interface AuthorizationAdmin ============*/
public boolean mayPerform2(String user, String action) {
System.out.println("mayPerform2() executing");
return true;
}
}
|