|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Generalised interface for checking whether a particular action in Confluence is allowed, without any knowledge of the specific implementation of permissions as they relate to spaces, pages and so on.
Nested Class Summary | |
static interface |
PermissionManager.Criterion
A criterion for whether an entity should be permitted or not |
Field Summary | |
static Object |
TARGET_APPLICATION
A target to represent the Confluence application as a whole, for global tests |
Method Summary | |
List |
getPermittedEntities(User user,
Permission permission,
Iterator objects,
int maxResults)
Filter an iterator based on which entities in the list have a particular permission. |
List |
getPermittedEntities(User user,
Permission permission,
Iterator objects,
int maxResults,
Collection otherCriteria)
Filter an iterator based on which entities in the list have a particular permission. |
List |
getPermittedEntities(User user,
Permission permission,
List objects)
Filter a list based on which entities in the list have a particular permission. |
boolean |
hasCreatePermission(User user,
Object container,
Class typeToCreate)
Determine whether a user has permission to create an entity of a particular type within a given container. |
boolean |
hasPermission(User user,
Permission permission,
Object target)
Determine whether a user has a particular permission against a given target. |
boolean |
isGlobalAdministrator(User user)
Determine if the user is a global administrator. |
Field Detail |
public static final Object TARGET_APPLICATION
Method Detail |
public boolean hasPermission(User user, Permission permission, Object target)
user
- the user seeking permission, or null if the anonymous user is being checked againstpermission
- the permission to checktarget
- the object that the permission is being checked against. If this object is null, the method
will return false
IllegalStateException
- if the permission being checked against does not apply to the targetpublic boolean hasCreatePermission(User user, Object container, Class typeToCreate)
The container is the natural container of the object being created. For example, a comment is contained in a page, which is contained within TARGET_APPLICATION.
user
- the user seeking permission, or null if the anonymous user is being checked againstcontainer
- the target that the object is being created within. If this object is null, the method
will return falsetypeToCreate
- the type of object being created (see above)
IllegalStateException
- if the permission being checked against does not apply to the targetContentEntityObject.getType()
public List getPermittedEntities(User user, Permission permission, List objects)
user
- the user seeking permission, or null if the anonymous user is being checked againstpermission
- the permission to check against the objectsobjects
- the objects to check
public List getPermittedEntities(User user, Permission permission, Iterator objects, int maxResults)
user
- the user seeking permission, or null if the anonymous user is being checked againstpermission
- the permission to check against the objectsobjects
- the objects to checkmaxResults
- the maximum number of permitted entities to retrieve from the iterator (un-permitted entities are not counted)
public List getPermittedEntities(User user, Permission permission, Iterator objects, int maxResults, Collection otherCriteria)
user
- the user seeking permission, or null if the anonymous user is being checked againstpermission
- the permission to check against the objectsobjects
- the objects to checkmaxResults
- the maximum number of permitted entities to retrieve from the iterator (un-permitted entities are not counted)otherCriteria
- a collection of PermissionManager.Criterion
objects through which the permitted entities must also be filtered
public boolean isGlobalAdministrator(User user)
hasPermission(user, Permission.ADMINISTER, PermissionManager.TARGET_APPLICATION)
, but hopefully
a bit easier on the eye.
user
- the user to check permissions against
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |