Class PageTemplatePermissionsDelegate
- java.lang.Object
-
- com.atlassian.confluence.security.delegate.AbstractPermissionsDelegate<PageTemplate>
-
- com.atlassian.confluence.security.delegate.PageTemplatePermissionsDelegate
-
- All Implemented Interfaces:
PermissionDelegate<PageTemplate>
public class PageTemplatePermissionsDelegate extends AbstractPermissionsDelegate<PageTemplate>
-
-
Field Summary
-
Fields inherited from class com.atlassian.confluence.security.delegate.AbstractPermissionsDelegate
spacePermissionManager
-
-
Constructor Summary
Constructors Constructor Description PageTemplatePermissionsDelegate()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
canAdminister(com.atlassian.user.User user, PageTemplate target)
boolean
canCreate(com.atlassian.user.User user, Object container)
boolean
canEdit(com.atlassian.user.User user, PageTemplate target)
boolean
canExport(com.atlassian.user.User user, PageTemplate target)
boolean
canRemove(com.atlassian.user.User user, PageTemplate target)
boolean
canSetPermissions(com.atlassian.user.User user, PageTemplate target)
boolean
canView(com.atlassian.user.User user, PageTemplate target)
protected Space
getSpaceFrom(Object target)
-
Methods inherited from class com.atlassian.confluence.security.delegate.AbstractPermissionsDelegate
canCreateInTarget, canView, 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
canMove, canRemoveHierarchy
-
-
-
-
Method Detail
-
canView
public boolean canView(com.atlassian.user.User user, PageTemplate target)
- Returns:
- true if user can view the specified target.
-
canEdit
public boolean canEdit(com.atlassian.user.User user, PageTemplate target)
-
canSetPermissions
public boolean canSetPermissions(com.atlassian.user.User user, PageTemplate target)
-
canRemove
public boolean canRemove(com.atlassian.user.User user, PageTemplate target)
-
canExport
public boolean canExport(com.atlassian.user.User user, PageTemplate target)
-
canAdminister
public boolean canAdminister(com.atlassian.user.User user, PageTemplate target)
-
canCreate
public boolean canCreate(com.atlassian.user.User user, Object container)
- Returns:
- true if the specified user can create new instances of the target type in the specified container.
-
getSpaceFrom
protected Space getSpaceFrom(Object target)
- Specified by:
getSpaceFrom
in classAbstractPermissionsDelegate<PageTemplate>
- Parameters:
target
- an entity object from which we want to extract a space container- Returns:
Space
container of the given target if available
-
-