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 java.lang.StringgetId()An id of the execution plan.java.util.List<PackageTask>getTasks()Retrieves the list of all tasksbooleanhasErrors()checks if this plan has errorbooleanisExecuted()Checks if this plan has finished.
-
-
-
Method Detail
-
getId
@Nonnull java.lang.String getId()
An id of the execution plan.- Returns:
- the id.
-
getTasks
@Nonnull java.util.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.
-
-