Class ExecuteDeltasTaskHandler
- java.lang.Object
-
- com.evolveum.midpoint.model.impl.controller.ExecuteDeltasTaskHandler
-
- All Implemented Interfaces:
TaskHandler
@Component public class ExecuteDeltasTaskHandler extends Object implements TaskHandler
Temporary/experimental implementation.- Author:
- mederly
-
-
Constructor Summary
Constructors Constructor Description ExecuteDeltasTaskHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCategoryName(Task task)
Returns a category name for a given task.TaskRunResult
run(RunningTask task, TaskPartitionDefinitionType partition)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.evolveum.midpoint.task.api.TaskHandler
getCategoryNames, getStatisticsCollectionStrategy, heartbeat, refreshStatus, run
-
-
-
-
Method Detail
-
run
public TaskRunResult run(RunningTask task, TaskPartitionDefinitionType partition)
- Specified by:
run
in interfaceTaskHandler
-
getCategoryName
public String getCategoryName(Task task)
Description copied from interface:TaskHandler
Returns a category name for a given task. In most cases, the name would be independent of concrete task.- Specified by:
getCategoryName
in interfaceTaskHandler
- Parameters:
task
- a task, whose category is to be determined; if getCategoryNames() returns null, this method has to accept null value as this parameter, and return the (one) category name that it gives to all tasks- Returns:
- a user-understandable name, like "LiveSync" or "Workflow"
-
-