| | |
| | |
|
| | | public static final String RPC_PATH = "/rpc/";
|
| | |
|
| | | public static final String PAGES= "/pages/";
|
| | | public static final String PAGES = "/pages/";
|
| | | |
| | | public static final String SPARKLESHARE_INVITE_PATH = "/sparkleshare/";
|
| | |
|
| | | public static final String BORDER = "***********************************************************";
|
| | |
|
| | |
| | | private AccessPermission(String code) {
|
| | | this.code = code;
|
| | | }
|
| | | |
| | |
|
| | | public boolean atMost(AccessPermission perm) {
|
| | | return ordinal() <= perm.ordinal();
|
| | | }
|
| | |
|
| | | public boolean atLeast(AccessPermission perm) {
|
| | | return ordinal() >= perm.ordinal();
|
| | | }
|