Class SystemPermissionsDelegate
java.lang.Object
com.atlassian.confluence.security.delegate.SystemPermissionsDelegate
- All Implemented Interfaces:
PermissionDelegate
Handles permission checks for operations deem to have an effect on the system and hence require sys admin perrmissions
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleancanAdminister(ConfluenceUser user, Object target) booleancanCreate(ConfluenceUser user, Object container) booleancanCreateInTarget(ConfluenceUser user, Class typeToCreate) booleancanEdit(ConfluenceUser user, Object target) booleancanExport(ConfluenceUser user, Object target) booleancanRemove(ConfluenceUser user, Object target) booleancanSetPermissions(ConfluenceUser user, Object target) booleancanView(ConfluenceUser user) booleancanView(ConfluenceUser user, Object target) voidsetSpacePermissionManager(SpacePermissionManager spacePermissionManager) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.atlassian.confluence.security.PermissionDelegate
canMove, canRemoveHierarchy
-
Constructor Details
-
SystemPermissionsDelegate
public SystemPermissionsDelegate()
-
-
Method Details
-
canView
- Specified by:
canViewin interfacePermissionDelegate- Returns:
- true if user can view the specified target.
-
canView
- Specified by:
canViewin interfacePermissionDelegate- Returns:
- true if the user can view all instances of targets handled by this permission delegate
-
canEdit
- Specified by:
canEditin interfacePermissionDelegate
-
canSetPermissions
- Specified by:
canSetPermissionsin interfacePermissionDelegate
-
canRemove
- Specified by:
canRemovein interfacePermissionDelegate
-
canExport
- Specified by:
canExportin interfacePermissionDelegate
-
canAdminister
- Specified by:
canAdministerin interfacePermissionDelegate
-
canCreate
- Specified by:
canCreatein interfacePermissionDelegate- Returns:
- true if the specified user can create new instances of the target type in the specified container.
-
canCreateInTarget
- Specified by:
canCreateInTargetin interfacePermissionDelegate- Parameters:
user- the user performing the createtypeToCreate- the class of the entity to create- Returns:
- true if the specified user can create new instances of the specified typeToCreate within instances of target handled by this PermissionDelegate.
-
setSpacePermissionManager
-