Package com.day.cq.workflow.statistics
Interface WorkflowStatisticService
-
public interface WorkflowStatisticServiceTheWorkflowStatisticServiceclass ...
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MapgetInstanceReport(WorkflowModel model)No longer support, now throwsUnsupportedOperationException.MapgetInstanceReport(Session session, WorkflowModel model)Returns the workflow instance report.MapgetReport()No longer supported, now throwsUnsupportedOperationException.MapgetReport(Session session)Returns the overall workflow report.
-
-
-
Method Detail
-
getReport
Map getReport()
No longer supported, now throwsUnsupportedOperationException. UsegetReport(Session)instead.
-
getInstanceReport
Map getInstanceReport(WorkflowModel model)
No longer support, now throwsUnsupportedOperationException. UsegetInstanceReport(Session, WorkflowModel)instead.
-
getReport
Map getReport(Session session)
Returns the overall workflow report.- Parameters:
session- The user session used to read the statistics.- Returns:
- The map of data that makes up the report.
-
getInstanceReport
Map getInstanceReport(Session session, WorkflowModel model)
Returns the workflow instance report.- Parameters:
session- The user session used to read the statistics.model- The workflow model to get the instance report for.- Returns:
- The map of data that makes up the report.
-
-