Class CommentPermissionsDelegate
java.lang.Object
com.atlassian.confluence.security.delegate.AbstractPermissionsDelegate<Comment>
com.atlassian.confluence.security.delegate.CommentPermissionsDelegate
- All Implemented Interfaces:
PermissionDelegate<Comment>
-
Field Summary
Fields inherited from class com.atlassian.confluence.security.delegate.AbstractPermissionsDelegate
spacePermissionManager
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
canAdminister
(ConfluenceUser user, Comment target) boolean
canCreate
(ConfluenceUser user, Object container) boolean
canEdit
(ConfluenceUser user, Comment target) boolean
canExport
(ConfluenceUser user, Comment target) We've decided that most objects aside from spaces should not support canExport.boolean
canRemove
(ConfluenceUser user, Comment target) boolean
canSetPermissions
(ConfluenceUser user, Comment target) boolean
canView
(ConfluenceUser user, Comment target) protected Space
getSpaceFrom
(Object target) void
setPermissionManager
(PermissionManager permissionManager) void
setPermissionManagerTarget
(DefaultPermissionManager permissionManager) Deprecated.Methods inherited from class com.atlassian.confluence.security.delegate.AbstractPermissionsDelegate
canCreateInTarget, canView, hasSpaceLevelPermission, hasSpaceLevelPermission, setSpacePermissionManager
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.atlassian.confluence.security.PermissionDelegate
canAdminister, canCreate, canCreateInTarget, canEdit, canExport, canMove, canMove, canRemove, canRemoveHierarchy, canRemoveHierarchy, canSetPermissions, canView, canView
-
Constructor Details
-
CommentPermissionsDelegate
public CommentPermissionsDelegate()
-
-
Method Details
-
canView
- Returns:
- true if user can view the specified target.
-
canEdit
-
canSetPermissions
-
canRemove
-
canExport
We've decided that most objects aside from spaces should not support canExport. We've changed some of them to delegate to view, but we're leaving this one delegating to its container for compatibility. The new operations delegate api will not support export for comments. -
canAdminister
-
setPermissionManagerTarget
Deprecated.since 7.16 usesetPermissionManager(PermissionManager)
-
setPermissionManager
- Since:
- 7.16
-
canCreate
- Returns:
- true if the specified user can create new instances of the target type in the specified container.
-
getSpaceFrom
- Specified by:
getSpaceFrom
in classAbstractPermissionsDelegate<Comment>
- Parameters:
target
- an entity object from which we want to extract a space container- Returns:
Space
container of the given target if available
-
setPermissionManager(PermissionManager)