Package org.pentaho.platform.api.engine
Interface IPentahoAclEntry
-
- All Superinterfaces:
IAclEntry
,IPentahoBasicAclEntry
,Serializable
@Deprecated public interface IPentahoAclEntry extends IPentahoBasicAclEntry
Deprecated.Base Hitachi Vantara Access Control entry. Subclassed BasicAclEntry from Spring Security. Provides known access controls.- Author:
- mbatchel
-
-
Field Summary
Fields Modifier and Type Field Description static int
PERM_ADMIN_ALL
Deprecated.Do not use this constant; instead use FULL_CONTROL for truly inclusive all access.static int
PERM_ADMINISTRATION
Deprecated.Administration access (60)static int
PERM_CREATE
Deprecated.Create access (4)static int
PERM_DELETE
Deprecated.Delete (16)static int
PERM_EXECUTE
Deprecated.Execute access (1)static int
PERM_EXECUTE_ADMINISTRATION
Deprecated.Execute and administration (61)static int
PERM_EXECUTE_SUBSCRIBE
Deprecated.Execute and subscribe (3)static int
PERM_FULL_CONTROL
Deprecated.All possible permissions (all ones; 0xffffffff; a negative number)static int
PERM_NOTHING
Deprecated.No access (0)static int
PERM_SUBSCRIBE
Deprecated.Subscribe access (2)static int
PERM_SUBSCRIBE_ADMINISTRATION
Deprecated.Subscribe and administration (62)static int
PERM_UPDATE
Deprecated.Update access (8)static int
PERM_UPDATE_PERMS
Deprecated.Manage perms (32)static String
PERMISSION_PREFIX
Deprecated.static String
PERMISSIONS_LIST_ALL
Deprecated.static String
PERMISSIONS_LIST_SOLUTIONS
Deprecated.
-
Method Summary
-
Methods inherited from interface org.pentaho.platform.api.engine.IPentahoBasicAclEntry
getAclObjectIdentity, getAclObjectParentIdentity, getMask, getRecipient, isPermitted, setAclObjectIdentity, setAclObjectParentIdentity, setMask, setRecipient
-
-
-
-
Field Detail
-
PERM_NOTHING
static final int PERM_NOTHING
Deprecated.No access (0)- See Also:
- Constant Field Values
-
PERM_EXECUTE
static final int PERM_EXECUTE
Deprecated.Execute access (1)- See Also:
- Constant Field Values
-
PERM_SUBSCRIBE
static final int PERM_SUBSCRIBE
Deprecated.Subscribe access (2)- See Also:
- Constant Field Values
-
PERM_CREATE
static final int PERM_CREATE
Deprecated.Create access (4)- See Also:
- Constant Field Values
-
PERM_UPDATE
static final int PERM_UPDATE
Deprecated.Update access (8)- See Also:
- Constant Field Values
-
PERM_DELETE
static final int PERM_DELETE
Deprecated.Delete (16)- See Also:
- Constant Field Values
-
PERM_UPDATE_PERMS
static final int PERM_UPDATE_PERMS
Deprecated.Manage perms (32)- See Also:
- Constant Field Values
-
PERM_ADMINISTRATION
static final int PERM_ADMINISTRATION
Deprecated.Administration access (60)- See Also:
- Constant Field Values
-
PERM_EXECUTE_SUBSCRIBE
static final int PERM_EXECUTE_SUBSCRIBE
Deprecated.Execute and subscribe (3)- See Also:
- Constant Field Values
-
PERM_ADMIN_ALL
@Deprecated static final int PERM_ADMIN_ALL
Deprecated.Do not use this constant; instead use FULL_CONTROL for truly inclusive all access. Old ADMIN_ALL (ie, WRITE) combination (31)- See Also:
- Constant Field Values
-
PERM_FULL_CONTROL
static final int PERM_FULL_CONTROL
Deprecated.All possible permissions (all ones; 0xffffffff; a negative number)- See Also:
- Constant Field Values
-
PERM_SUBSCRIBE_ADMINISTRATION
static final int PERM_SUBSCRIBE_ADMINISTRATION
Deprecated.Subscribe and administration (62)- See Also:
- Constant Field Values
-
PERM_EXECUTE_ADMINISTRATION
static final int PERM_EXECUTE_ADMINISTRATION
Deprecated.Execute and administration (61)- See Also:
- Constant Field Values
-
PERMISSIONS_LIST_SOLUTIONS
static final String PERMISSIONS_LIST_SOLUTIONS
Deprecated.- See Also:
- Constant Field Values
-
PERMISSIONS_LIST_ALL
static final String PERMISSIONS_LIST_ALL
Deprecated.- See Also:
- Constant Field Values
-
PERMISSION_PREFIX
static final String PERMISSION_PREFIX
Deprecated.- See Also:
- Constant Field Values
-
-