Package com.day.cq.reporting
Interface Processor
-
public interface Processor
This 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 void
cleanup()
Cleans up the processor.boolean
processRow(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:
true
if the row has to be removed from the result set
-
cleanup
void cleanup()
Cleans up the processor.
-
-