Class SharedContentDraftServiceImpl
java.lang.Object
com.atlassian.confluence.api.impl.service.content.draft.SharedContentDraftServiceImpl
- 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
Fields inherited from interface com.atlassian.confluence.api.service.content.ContentDraftService
INTERNAL_DRAFT -
Constructor Summary
ConstructorsConstructorDescriptionSharedContentDraftServiceImpl(ContentService contentService, ContentEntityManagerInternal contentEntityManager, ContentPermissionManager contentPermissionManager, RelatableResolver relatableResolver, PageManager pageManager, com.atlassian.event.api.EventPublisher eventPublisher, RelationService relationService, RelationManager relationManager, AccessModeService accessModeService) -
Method Summary
Modifier and TypeMethodDescriptionvoiddeleteDraft(ContentId contentId) Deletes the draft for this content.publishEditDraft(Content updatedContent, ContentDraftService.ConflictPolicy conflictPolicy) Update existing page/blog post that has an existing draftpublishNewDraft(Content content, Expansion... expansions) Deprecated.since 5.9 - we use the same method for publishing drafts for new pages and for page editscom.atlassian.confluence.api.impl.service.content.draft.SharedContentDraftServiceImpl.DraftValidatorImpl
-
Constructor Details
-
SharedContentDraftServiceImpl
public SharedContentDraftServiceImpl(ContentService contentService, ContentEntityManagerInternal contentEntityManager, ContentPermissionManager contentPermissionManager, RelatableResolver relatableResolver, PageManager pageManager, com.atlassian.event.api.EventPublisher eventPublisher, RelationService relationService, RelationManager relationManager, AccessModeService accessModeService)
-
-
Method Details
-
publishNewDraft
@Deprecated public Content publishNewDraft(Content content, Expansion... expansions) throws ServiceException Deprecated.since 5.9 - we use the same method for publishing drafts for new pages and for page editsTODO SHARED-DRAFTS: For shared drafts we never publish new drafts Content draft service interface will be reworked to remove this method- Specified by:
publishNewDraftin interfaceContentDraftService- Parameters:
content- new content to be createdexpansions- An array list of properties to expand on the content.- Returns:
- the newly published content
- Throws:
com.atlassian.confluence.api.service.exceptions.NotFoundException- if the draft doesn't exist or the user doesn't have permission to view itcom.atlassian.confluence.api.service.exceptions.PermissionException- if the user does have permission to modify this draftServiceException
-
publishEditDraft
public Content publishEditDraft(Content updatedContent, ContentDraftService.ConflictPolicy conflictPolicy) Description copied from interface:ContentDraftServiceUpdate existing page/blog post that has an existing draft- Specified by:
publishEditDraftin interfaceContentDraftService- Parameters:
updatedContent- 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:ContentDraftServiceDeletes the draft for this content. In the case of shared drafts, only drafts which have never been published can be deleted- Specified by:
deleteDraftin interfaceContentDraftService- Parameters:
contentId- id of the draft to delete
-
validator
public com.atlassian.confluence.api.impl.service.content.draft.SharedContentDraftServiceImpl.DraftValidatorImpl validator()- Specified by:
validatorin interfaceContentDraftService
-