blob: 4eeb7a66a804e46ecf84538313b8a1d1182eacc4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package test;
public class SomeContext
{
public SomeContext getPermissionDetails()
{
return this;
}
public boolean checkAccess(String tag, SomeEnum accessType) {
return false;
}
}
|