Class DeleteChangeDocumentsIndexTask
- java.lang.Object
 - 
- com.atlassian.confluence.internal.search.tasks.DeleteChangeDocumentsIndexTask
 
 
- 
- All Implemented Interfaces:
 ConfluenceIndexTask,ConvertibleToJournalEntry,HandleAware,IndexTask
@LuceneIndependent @Internal public class DeleteChangeDocumentsIndexTask extends Object implements ConfluenceIndexTask, HandleAware
Removes all change documents for a particular searchable. 
- 
- 
Constructor Summary
Constructors Constructor Description DeleteChangeDocumentsIndexTask(Searchable searchable)Creates a remove change documents index task for the latest version of searchableDeleteChangeDocumentsIndexTask(String handle) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Optional<JournalEntry>convertToJournalEntry(JournalIdentifier journalId)Convert to journal entry.booleanequals(Object obj)StringgetDescription()A description of the task that can be presented to the user via the UI.HandlegetHandle()SearchIndexgetSearchIndex()inthashCode()voidperform(SearchIndexWriter writer)Executes this task against a document writer.StringtoString() 
 - 
 
- 
- 
Constructor Detail
- 
DeleteChangeDocumentsIndexTask
public DeleteChangeDocumentsIndexTask(Searchable searchable)
Creates a remove change documents index task for the latest version of searchable- Parameters:
 searchable-- Throws:
 UnsupportedOperationException- if searchable is not supported.
 
- 
DeleteChangeDocumentsIndexTask
public DeleteChangeDocumentsIndexTask(String handle)
 
 - 
 
- 
Method Detail
- 
getHandle
public Handle getHandle()
- Specified by:
 getHandlein interfaceHandleAware- Returns:
 - the handle
 
 
- 
getDescription
public String getDescription()
Description copied from interface:IndexTaskA description of the task that can be presented to the user via the UI.- Specified by:
 getDescriptionin interfaceIndexTask- Returns:
 - an readable message.
 
 
- 
perform
public void perform(SearchIndexWriter writer) throws IOException
Description copied from interface:ConfluenceIndexTaskExecutes this task against a document writer.- Specified by:
 performin interfaceConfluenceIndexTask- Throws:
 IOException
 
- 
convertToJournalEntry
public Optional<JournalEntry> convertToJournalEntry(JournalIdentifier journalId)
Description copied from interface:ConvertibleToJournalEntryConvert to journal entry.- Specified by:
 convertToJournalEntryin interfaceConvertibleToJournalEntry- Parameters:
 journalId- journal identifier- Returns:
 - an optional containing a journal entry or empty if this cannot be converted.
 
 
- 
getSearchIndex
public SearchIndex getSearchIndex()
- Specified by:
 getSearchIndexin interfaceConfluenceIndexTask- Returns:
 - the 
SearchIndexthat the task should write to 
 
 - 
 
 -