Uses of Class
com.atlassian.confluence.security.ContentPermission

Packages that use ContentPermission
com.atlassian.confluence.content.service.page   
com.atlassian.confluence.core   
com.atlassian.confluence.core.persistence   
com.atlassian.confluence.core.persistence.hibernate   
com.atlassian.confluence.event.events.security   
com.atlassian.confluence.pages.actions   
com.atlassian.confluence.rpc.soap.beans   
com.atlassian.confluence.security   
com.atlassian.confluence.upgrade.security   
 

Uses of ContentPermission in com.atlassian.confluence.content.service.page
 

Methods in com.atlassian.confluence.content.service.page that return types with arguments of type ContentPermission
 Collection<ContentPermission> SimpleContentPermissionProvider.getEditPermissions()
           
 Collection<ContentPermission> ContentPermissionProvider.getEditPermissions()
           
 Collection<ContentPermission> SimpleContentPermissionProvider.getViewPermissions()
           
 Collection<ContentPermission> ContentPermissionProvider.getViewPermissions()
           
 

Method parameters in com.atlassian.confluence.content.service.page with type arguments of type ContentPermission
 void SimpleContentPermissionProvider.setEditPermissions(Collection<ContentPermission> editPermissions)
           
 void SimpleContentPermissionProvider.setViewPermissions(Collection<ContentPermission> viewPermissions)
           
 

Uses of ContentPermission in com.atlassian.confluence.core
 

Methods in com.atlassian.confluence.core that return ContentPermission
 ContentPermission ContentEntityObject.getContentPermission(String permissionType)
          Deprecated. use getContentPermissionSet
 

Methods in com.atlassian.confluence.core that return types with arguments of type ContentPermission
 List<ContentPermission> DefaultContentPermissionManager.getInheritedContentPermissions(ContentEntityObject contentEntityObject)
           
 List<ContentPermission> ContentPermissionManager.getInheritedContentPermissions(ContentEntityObject contentEntityObject)
          Deprecated. use #getInheritedContentPermissionSets
 List<ContentPermission> DefaultContentPermissionManager.getInheritedContentUserPermissions(ContentEntityObject contentEntityObject)
          Filters the inherited content permission sets of a page for a list of inherited user permissions (of type VIEW_PERMISSION)
 List<ContentPermission> ContentPermissionManager.getInheritedContentUserPermissions(ContentEntityObject contentEntityObject)
           
 Set<ContentPermission> DefaultContentPermissionManager.getViewContentPermissions(Page page)
           
 Set<ContentPermission> ContentPermissionManager.getViewContentPermissions(Page page)
          Get view permissions on this page and its ancestors.
 

Methods in com.atlassian.confluence.core with parameters of type ContentPermission
 void DefaultContentPermissionManager.addContentPermission(ContentPermission permission, ContentEntityObject content)
          Adds a new current content permission to the CEO if it doesn't have it already.
 void ContentPermissionManager.addContentPermission(ContentPermission permission, ContentEntityObject content)
          Add permissions to the content entity objecct through the manager.
 void ContentEntityObject.addPermission(ContentPermission permission)
          Adds a ContentPermission.
 void DefaultContentPermissionManager.removeContentPermission(ContentPermission contentPermission)
           
 void ContentPermissionManager.removeContentPermission(ContentPermission permission)
           
 

Method parameters in com.atlassian.confluence.core with type arguments of type ContentPermission
 void DefaultContentPermissionManager.setContentPermissions(Collection<ContentPermission> requiredPermissions, ContentEntityObject content, String type)
           
 void ContentPermissionManager.setContentPermissions(Collection<ContentPermission> contentPermissions, ContentEntityObject content, String type)
          Set the Content Permissions on the CEO to be the list of ContentPermissions passed.
 

Uses of ContentPermission in com.atlassian.confluence.core.persistence
 

Methods in com.atlassian.confluence.core.persistence that return ContentPermission
 ContentPermission ContentPermissionDao.getById(long id)
           
 

Methods in com.atlassian.confluence.core.persistence that return types with arguments of type ContentPermission
 List<ContentPermission> ContentPermissionDao.getGroupPermissions(String groupName)
           
 List<ContentPermission> ContentPermissionDao.getUserPermissions(String userId)
           
 

Uses of ContentPermission in com.atlassian.confluence.core.persistence.hibernate
 

Methods in com.atlassian.confluence.core.persistence.hibernate that return ContentPermission
 ContentPermission ContentPermissionHibernateDao.getById(long id)
           
 

Methods in com.atlassian.confluence.core.persistence.hibernate that return types with arguments of type ContentPermission
 List<ContentPermission> ContentPermissionHibernateDao.getGroupPermissions(String groupName)
           
 List<ContentPermission> ContentPermissionHibernateDao.getUserPermissions(String userName)
           
 

Uses of ContentPermission in com.atlassian.confluence.event.events.security
 

Methods in com.atlassian.confluence.event.events.security that return ContentPermission
 ContentPermission ContentPermissionEvent.getContentPermission()
           
 

Constructors in com.atlassian.confluence.event.events.security with parameters of type ContentPermission
ContentPermissionEvent(Object src, ContentEntityObject content, ContentPermission contentPermission)
           
 

Uses of ContentPermission in com.atlassian.confluence.pages.actions
 

Methods in com.atlassian.confluence.pages.actions that return ContentPermission
 ContentPermission AbstractCreateAndEditPageAction.getCurrentEditPermission()
           
 ContentPermission AbstractCreateAndEditPageAction.getCurrentViewPermission()
           
 

Methods in com.atlassian.confluence.pages.actions that return types with arguments of type ContentPermission
protected  List<ContentPermission> AbstractCreateAndEditPageAction.createEditPermissions()
          Deprecated. since 3.1. Use a PagePermissionsActionHelper in your Action.
protected  List<ContentPermission> AbstractCreateAndEditPageAction.createViewPermissions()
          Deprecated. since 3.1. Use a PagePermissionsActionHelper in your Action.
 

Method parameters in com.atlassian.confluence.pages.actions with type arguments of type ContentPermission
protected  void AbstractCreateAndEditPageAction.setPermissions(List<ContentPermission> permissions)
           
 

Uses of ContentPermission in com.atlassian.confluence.rpc.soap.beans
 

Constructors in com.atlassian.confluence.rpc.soap.beans with parameters of type ContentPermission
RemoteContentPermission(ContentPermission contentPermission)
           
RemotePermission(ContentPermission permission)
          Deprecated.  
 

Uses of ContentPermission in com.atlassian.confluence.security
 

Methods in com.atlassian.confluence.security that return ContentPermission
static ContentPermission ContentPermission.createGroupPermission(String type, String groupName)
           
static ContentPermission ContentPermission.createUserPermission(String type, String userName)
           
 

Methods in com.atlassian.confluence.security that return types with arguments of type ContentPermission
 Collection<ContentPermission> ContentPermissionSet.getAllExcept(Collection<ContentPermission> exclusions)
          Retrieve all the ContentPermissions in this set that do not exist in the given collection.
 Iterator<ContentPermission> ContentPermissionSet.iterator()
           
 

Methods in com.atlassian.confluence.security with parameters of type ContentPermission
 void ContentPermissionSet.addContentPermission(ContentPermission contentPermission)
           
 boolean ContentPermissionSet.contains(ContentPermission contentPermission)
           
 void ContentPermissionSet.removeContentPermission(ContentPermission contentPermission)
          Remove the given content permission from this set.
 

Method parameters in com.atlassian.confluence.security with type arguments of type ContentPermission
 Collection<ContentPermission> ContentPermissionSet.getAllExcept(Collection<ContentPermission> exclusions)
          Retrieve all the ContentPermissions in this set that do not exist in the given collection.
 

Constructors in com.atlassian.confluence.security with parameters of type ContentPermission
ContentPermission(ContentPermission other)
          Copy constructor.
 

Uses of ContentPermission in com.atlassian.confluence.upgrade.security
 

Methods in com.atlassian.confluence.upgrade.security that return ContentPermission
 ContentPermission LegacyContentPermission.toContentPermission()
          Create a ContentPermission to represent this LegacyContentPermission.
 



Copyright © 2003-2011 Atlassian. All Rights Reserved.