Package com.atlassian.confluence.pages
Class DefaultDraftManager
- java.lang.Object
-
- com.atlassian.confluence.pages.DefaultDraftManager
-
- All Implemented Interfaces:
DraftManager
public class DefaultDraftManager extends Object implements DraftManager
This implementation supports anonymous drafts using session-based storage.
-
-
Constructor Summary
Constructors Constructor Description DefaultDraftManager()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description intcountDrafts(String owner)Draftcreate(String username, DraftService.DraftType draftType, String spaceKey)Creates a new persistent draft of the specified draft type in the space for the user.Draftcreate(String username, DraftService.DraftType draftType, String spaceKey, long parentPageId)Creates a new persistent draft of the specified draft type in the space for the user.DraftfindDraft(Long pageId, String owner, String type, String spaceKey)Finds the draft with the given page ID, owner and type.List<Draft>findDraftsForUser(com.atlassian.user.User user)Returns the drafts for the user provided or an empty list if the user has no drafts.DraftgetDraft(long draftId)Finds the draft given a specific draft id.DraftgetOrCreate(String username, String draftType, String spaceKey)Deprecated.booleanisMergeRequired(Draft draft)Returns true if the draft version of a page is different to the current version of a page, otherwise false.MergeResultmergeContent(Draft draft)Merges the draft with the original version compared to the latest version of the page.voidremoveAllDrafts()Removes all drafts stored in the databasevoidremoveDraft(Draft draft)Removes the draft specified.voidremoveDraftsForUser(String username)Removes all drafts in the data store associated with the specified user.voidsaveDraft(Draft draft)Saves the provided draft to the data store.voidsetAttachmentManager(AttachmentManager attachmentManager)voidsetConfluenceUserDao(ConfluenceUserDao confluenceUserDao)voidsetDraftDao(DraftDao draftDao)voidsetHttpContext(HttpContext httpContext)voidsetLabelManager(LabelManager labelManager)voidsetMergerManager(MergerManager mergerManager)voidsetPageManager(PageManager pageManager)
-
-
-
Method Detail
-
saveDraft
public void saveDraft(Draft draft)
Description copied from interface:DraftManagerSaves the provided draft to the data store. Anonymous drafts will be persisted to the web session.The draft must have a page ID of "0" for drafts of new content, or the ID of an existing page or blog post.
- Specified by:
saveDraftin interfaceDraftManager
-
findDraft
public Draft findDraft(Long pageId, String owner, String type, String spaceKey)
Description copied from interface:DraftManagerFinds the draft with the given page ID, owner and type. Returns null if a matching draft cannot be found.- Specified by:
findDraftin interfaceDraftManager- Parameters:
pageId- the ID of the content which the draft is forowner- the user name of the user who created the drafttype- the type of draft, which is usually the result of callingContentEntityObject.getType()spaceKey- Space that the draft lives in.- Returns:
- the matching draft or null if a draft cannot be found
-
countDrafts
public int countDrafts(String owner)
- Specified by:
countDraftsin interfaceDraftManager- Returns:
- A count of drafts with content for the given owner
-
getDraft
public Draft getDraft(long draftId)
Description copied from interface:DraftManagerFinds the draft given a specific draft id. Returns null if no draft is found.- Specified by:
getDraftin interfaceDraftManager- Returns:
- the matching draft or null if a draft cannot be found
-
removeDraft
public void removeDraft(Draft draft)
Description copied from interface:DraftManagerRemoves the draft specified. Does nothing if the draft cannot be found.- Specified by:
removeDraftin interfaceDraftManager
-
findDraftsForUser
public List<Draft> findDraftsForUser(com.atlassian.user.User user)
Description copied from interface:DraftManagerReturns the drafts for the user provided or an empty list if the user has no drafts.- Specified by:
findDraftsForUserin interfaceDraftManager
-
isMergeRequired
public boolean isMergeRequired(Draft draft)
Description copied from interface:DraftManagerReturns true if the draft version of a page is different to the current version of a page, otherwise false.Always returns false for new content.
- Specified by:
isMergeRequiredin interfaceDraftManager
-
mergeContent
public MergeResult mergeContent(Draft draft)
Merges the draft with the original version compared to the latest version of the page.- Specified by:
mergeContentin interfaceDraftManager- Parameters:
draft- the draft whose changes to merge with the latest version of the content- Returns:
- result of the merge which contains additional information about the merge.
-
create
public Draft create(String username, DraftService.DraftType draftType, String spaceKey)
Description copied from interface:DraftManagerCreates a new persistent draft of the specified draft type in the space for the user.- Specified by:
createin interfaceDraftManager- Parameters:
username- - the owner of the draft, may be null for anonymousdraftType- - the type of draft, (either blogpost or page)spaceKey- - the space in which to create the draft- Returns:
- a newly created persistent draft
-
create
public Draft create(String username, DraftService.DraftType draftType, String spaceKey, long parentPageId)
Description copied from interface:DraftManagerCreates a new persistent draft of the specified draft type in the space for the user.- Specified by:
createin interfaceDraftManager- Parameters:
username- - the owner of the draft, may be null for anonymousdraftType- - the type of draft, (either blogpost or page)spaceKey- - the space in which to create the draftparentPageId- - the parentPageId of a page- Returns:
- a newly created persistent draft
-
getOrCreate
@Deprecated public Draft getOrCreate(String username, String draftType, String spaceKey)
Deprecated.Description copied from interface:DraftManagerGets a new draft object. If such a draft does not exist one is created.- Specified by:
getOrCreatein interfaceDraftManager- Parameters:
username- name of user or null for anonymous usersdraftType- the content type of the draft, e.g.Page.CONTENT_TYPEspaceKey- the space key of the content- Returns:
- the existing draft for the given content and user, or a new draft object if that does not exist.
-
removeAllDrafts
public void removeAllDrafts()
Description copied from interface:DraftManagerRemoves all drafts stored in the database- Specified by:
removeAllDraftsin interfaceDraftManager
-
removeDraftsForUser
public void removeDraftsForUser(String username)
Description copied from interface:DraftManagerRemoves all drafts in the data store associated with the specified user.- Specified by:
removeDraftsForUserin interfaceDraftManager
-
setDraftDao
public void setDraftDao(DraftDao draftDao)
-
setPageManager
public void setPageManager(PageManager pageManager)
-
setAttachmentManager
public void setAttachmentManager(AttachmentManager attachmentManager)
-
setLabelManager
public void setLabelManager(LabelManager labelManager)
-
setHttpContext
public void setHttpContext(HttpContext httpContext)
-
setMergerManager
public void setMergerManager(MergerManager mergerManager)
-
setConfluenceUserDao
public void setConfluenceUserDao(ConfluenceUserDao confluenceUserDao)
-
-