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
Modifier and TypeMethodDescriptionvoidcleanup()Cleans up the processor.booleanprocessRow(DataRow rowToProcess) Process the specified row.
-
Method Details
-
processRow
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.
-