Interface ExecutionPlan
-
@ProviderType public interface ExecutionPlan
Holds a list of tasks that perform package installation related operations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetId()An id of the execution plan.List<PackageTask>getTasks()Retrieves the list of all tasksbooleanhasErrors()checks if this plan has errorbooleanisExecuted()Checks if this plan has finished.
-
-
-
Method Detail
-
getTasks
@Nonnull List<PackageTask> getTasks()
Retrieves the list of all tasks- Returns:
- the tasks.
-
isExecuted
boolean isExecuted()
Checks if this plan has finished.- Returns:
trueif executed.
-
hasErrors
boolean hasErrors()
checks if this plan has error- Returns:
trueif it has errors.
-
-