Class LegacyContentDraftServiceImpl
java.lang.Object
com.atlassian.confluence.api.impl.service.content.draft.LegacyContentDraftServiceImpl
- All Implemented Interfaces:
ContentDraftService
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.atlassian.confluence.api.service.content.ContentDraftService
ContentDraftService.ConflictPolicy, ContentDraftService.DraftErrorCodes, ContentDraftService.DraftValidator
-
Field Summary
-
Constructor Summary
ConstructorDescriptionLegacyContentDraftServiceImpl
(PermissionManager permissionManager, ContentService contentService, DraftManager draftManager, PermissionCheckExemptions permissionCheckExemptions, AccessModeService accessModeService, CustomContentManager customContentManager, ContentDraftManagerInternal contentDraftManager, ScopesRequestCacheDelegate scopesRequestCacheDelegate) -
Method Summary
Modifier and TypeMethodDescriptionvoid
deleteDraft
(ContentId draftId) Deletes the draft for this content.publishEditDraft
(Content content, ContentDraftService.ConflictPolicy conflictPolicy) Update existing page/blog post that has an existing draftpublishNewDraft
(Content content, Expansion... expansions) Publishes the draft.
-
Field Details
-
INTERNAL_DRAFT
- See Also:
-
-
Constructor Details
-
LegacyContentDraftServiceImpl
public LegacyContentDraftServiceImpl(PermissionManager permissionManager, ContentService contentService, DraftManager draftManager, PermissionCheckExemptions permissionCheckExemptions, AccessModeService accessModeService, CustomContentManager customContentManager, ContentDraftManagerInternal contentDraftManager, ScopesRequestCacheDelegate scopesRequestCacheDelegate)
-
-
Method Details
-
publishNewDraft
Description copied from interface:ContentDraftService
Publishes the draft. This will change the status of the current draft to current.- Specified by:
publishNewDraft
in interfaceContentDraftService
- Parameters:
content
- new content to be createdexpansions
- An array list of properties to expand on the content.- Returns:
- the newly published content
- Throws:
NotFoundException
- if the draft doesn't exist or the user doesn't have permission to view itPermissionException
- if the user does have permission to modify this draftServiceException
-
publishEditDraft
Description copied from interface:ContentDraftService
Update existing page/blog post that has an existing draft- Specified by:
publishEditDraft
in interfaceContentDraftService
- Parameters:
content
- page/blog post content, requires a valid content id of an existing draftconflictPolicy
- the policy to apply on a conflict, either abort or automerge. No mergeable conflicts will still return a 409 even if policy is automerge- Returns:
- the updated content
-
deleteDraft
Description copied from interface:ContentDraftService
Deletes the draft for this content. In the case of shared drafts, only drafts which have never been published can be deleted- Specified by:
deleteDraft
in interfaceContentDraftService
- Parameters:
draftId
- id of the draft to delete
-
validator
- Specified by:
validator
in interfaceContentDraftService
-