Package com.day.cq.reporting
Interface Processor
-
public interface ProcessorThis interface must be implemented by each processor class that is used for post-processing the result data
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcleanup()Cleans up the processor.booleanprocessRow(DataRow rowToProcess)Process the specified row.
-
-
-
Method Detail
-
processRow
boolean processRow(DataRow rowToProcess)
Process the specified row.- Parameters:
rowToProcess- The row to be processed- Returns:
trueif the row has to be removed from the result set
-
cleanup
void cleanup()
Cleans up the processor.
-
-