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.String
getId()
An id of the execution plan.java.util.List<PackageTask>
getTasks()
Retrieves the list of all tasksboolean
hasErrors()
checks if this plan has errorboolean
isExecuted()
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:
true
if executed.
-
hasErrors
boolean hasErrors()
checks if this plan has error- Returns:
true
if it has errors.
-
-