Uses of Class
com.atlassian.confluence.api.model.permissions.ContentRestrictionsPageResponse
-
Packages that use ContentRestrictionsPageResponse Package Description com.atlassian.confluence.api.impl.service.permissions com.atlassian.confluence.api.model.permissions Model objects for user and group permission and validation checks, for use withOperationService
.com.atlassian.confluence.api.service.permissions com.atlassian.confluence.rest.client This package contains the code which communicates with Confluence via REST API. -
-
Uses of ContentRestrictionsPageResponse in com.atlassian.confluence.api.impl.service.permissions
Methods in com.atlassian.confluence.api.impl.service.permissions that return ContentRestrictionsPageResponse Modifier and Type Method Description ContentRestrictionsPageResponse
ContentRestrictionServiceImpl. addRestrictions(ContentId target, Collection<? extends ContentRestriction> contentRestrictions, Expansion... expansions)
ContentRestrictionsPageResponse
ContentRestrictionServiceImpl. deleteAllDirectRestrictions(ContentId target, Expansion... expansions)
ContentRestrictionsPageResponse
ContentRestrictionServiceImpl. getRestrictions(ContentId target, PageRequest pageRequest, Expansion... allExpansions)
ContentRestrictionsPageResponse
ContentRestrictionServiceImpl. updateRestrictions(ContentId target, Collection<? extends ContentRestriction> contentRestrictions, Expansion... expansions)
-
Uses of ContentRestrictionsPageResponse in com.atlassian.confluence.api.model.permissions
Methods in com.atlassian.confluence.api.model.permissions that return ContentRestrictionsPageResponse Modifier and Type Method Description ContentRestrictionsPageResponse
ContentRestrictionsPageResponse.ContentRestrictionPageResponseBuilder. build()
-
Uses of ContentRestrictionsPageResponse in com.atlassian.confluence.api.service.permissions
Methods in com.atlassian.confluence.api.service.permissions that return ContentRestrictionsPageResponse Modifier and Type Method Description ContentRestrictionsPageResponse
ContentRestrictionService. addRestrictions(ContentId target, Collection<? extends ContentRestriction> contentRestrictions, Expansion... expansions)
Attempts to add all the restrictions specified to a piece of content identified bycontentId
.ContentRestrictionsPageResponse
ContentRestrictionService. deleteAllDirectRestrictions(ContentId target, Expansion... expansions)
Attempts to delete all the restrictions specified directly on a piece of content identified bycontentId
.ContentRestrictionsPageResponse
ContentRestrictionService. getRestrictions(ContentId target, PageRequest pageRequest, Expansion... expansions)
Retrieves all the restrictions for all the operations on a given Content.ContentRestrictionsPageResponse
ContentRestrictionService. updateRestrictions(ContentId target, Collection<? extends ContentRestriction> contentRestrictions, Expansion... expansions)
Sets all the restrictions specified to a piece of content identified bycontentId
, replacing any existing permissions. -
Uses of ContentRestrictionsPageResponse in com.atlassian.confluence.rest.client
Methods in com.atlassian.confluence.rest.client that return types with arguments of type ContentRestrictionsPageResponse Modifier and Type Method Description default com.atlassian.util.concurrent.Promise<ContentRestrictionsPageResponse>
RemoteContentRestrictionService. addRestrictions(ContentId target, Collection<? extends ContentRestriction> contentRestrictions, Expansion... expansions)
Deprecated.since 7.0.1.CompletionStage<ContentRestrictionsPageResponse>
RemoteContentRestrictionService. addRestrictionsCompletionStage(ContentId target, Collection<? extends ContentRestriction> contentRestrictions, Expansion... expansions)
Attempts to add all the restrictions specified to a piece of content identified bycontentId
.CompletionStage<ContentRestrictionsPageResponse>
RemoteContentRestrictionServiceImpl. addRestrictionsCompletionStage(ContentId target, Collection<? extends ContentRestriction> contentRestrictions, Expansion... expansions)
default com.atlassian.util.concurrent.Promise<ContentRestrictionsPageResponse>
RemoteContentRestrictionService. deleteAllDirectRestrictions(ContentId target, Expansion... expansions)
Deprecated.since 7.0.1.CompletionStage<ContentRestrictionsPageResponse>
RemoteContentRestrictionService. deleteAllDirectRestrictionsCompletionStage(ContentId target, Expansion... expansions)
Attempts to delete all the restrictions specified directly on a piece of content identified bycontentId
.CompletionStage<ContentRestrictionsPageResponse>
RemoteContentRestrictionServiceImpl. deleteAllDirectRestrictionsCompletionStage(ContentId target, Expansion... expansions)
default com.atlassian.util.concurrent.Promise<ContentRestrictionsPageResponse>
RemoteContentRestrictionService. getRestrictions(ContentId target, PageRequest pageRequest, Expansion... expansions)
Deprecated.since 7.0.1.CompletionStage<ContentRestrictionsPageResponse>
RemoteContentRestrictionService. getRestrictionsCompletionStage(ContentId target, PageRequest pageRequest, Expansion... expansions)
Retrieves all the restrictions for all the operations on a given Content.CompletionStage<ContentRestrictionsPageResponse>
RemoteContentRestrictionServiceImpl. getRestrictionsCompletionStage(ContentId target, PageRequest pageRequest, Expansion... expansions)
default com.atlassian.util.concurrent.Promise<ContentRestrictionsPageResponse>
RemoteContentRestrictionService. updateRestrictions(ContentId target, Collection<? extends ContentRestriction> contentRestrictions, Expansion... expansions)
Deprecated.since 7.0.1.CompletionStage<ContentRestrictionsPageResponse>
RemoteContentRestrictionService. updateRestrictionsCompletionStage(ContentId target, Collection<? extends ContentRestriction> contentRestrictions, Expansion... expansions)
Sets all the restrictions specified to a piece of content identified bycontentId
, replacing any existing permissions.CompletionStage<ContentRestrictionsPageResponse>
RemoteContentRestrictionServiceImpl. updateRestrictionsCompletionStage(ContentId target, Collection<? extends ContentRestriction> contentRestrictions, Expansion... expansions)
-