Class XhtmlContentWorkSource
- java.lang.Object
 - 
- com.atlassian.confluence.content.render.xhtml.migration.XhtmlContentWorkSource
 
 
- 
- All Implemented Interfaces:
 BatchableWorkSource<ContentEntityObject>
public class XhtmlContentWorkSource extends Object implements BatchableWorkSource<ContentEntityObject>
A work source that provides batches of
ContentEntityObjects that have XHTML formatted bodies.This class is thread-safe.
 
- 
- 
Constructor Summary
Constructors Constructor Description XhtmlContentWorkSource(ContentDao contentDao, int batchSize) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ContentEntityObject>getBatch()Returns a batch of work.intgetTotalSize()booleanhasMoreBatches()intnumberOfBatches()voidreset(int total)Reset the work source ready to begin getting batches again. 
 - 
 
- 
- 
Constructor Detail
- 
XhtmlContentWorkSource
public XhtmlContentWorkSource(ContentDao contentDao, int batchSize)
 
 - 
 
- 
Method Detail
- 
getBatch
public List<ContentEntityObject> getBatch()
Returns a batch of work. When work is exhausted an empty list is returned.- Specified by:
 getBatchin interfaceBatchableWorkSource<ContentEntityObject>- Returns:
 - batch of work
 
 
- 
hasMoreBatches
public boolean hasMoreBatches()
- Specified by:
 hasMoreBatchesin interfaceBatchableWorkSource<ContentEntityObject>- Returns:
 - true if more work batches exist
 
 
- 
numberOfBatches
public int numberOfBatches()
- Specified by:
 numberOfBatchesin interfaceBatchableWorkSource<ContentEntityObject>- Returns:
 - total number of work batches available.
 
 
- 
reset
public void reset(int total)
Description copied from interface:BatchableWorkSourceReset the work source ready to begin getting batches again.- Specified by:
 resetin interfaceBatchableWorkSource<ContentEntityObject>
 
- 
getTotalSize
public int getTotalSize()
- Specified by:
 getTotalSizein interfaceBatchableWorkSource<ContentEntityObject>
 
 - 
 
 -