Class PlaybookContext
-
- All Implemented Interfaces:
public final class PlaybookContextContext available for evaluating unlock conditions.
-
-
Field Summary
Fields Modifier and Type Field Description private final Set<String>calledToolNamesprivate final List<Object>artifactsprivate final IntegeriterationCountprivate final Blackboardblackboard
-
Constructor Summary
Constructors Constructor Description PlaybookContext(Set<String> calledToolNames, List<Object> artifacts, Integer iterationCount, Blackboard blackboard)
-
Method Summary
Modifier and Type Method Description final Set<String>getCalledToolNames()Names of tools that have been called so far. final List<Object>getArtifacts()Artifacts produced by tools so far. final IntegergetIterationCount()Number of iterations completed. final BlackboardgetBlackboard()The process blackboard, for conditions that depend on process state. -
-
Method Detail
-
getCalledToolNames
final Set<String> getCalledToolNames()
Names of tools that have been called so far.
-
getArtifacts
final List<Object> getArtifacts()
Artifacts produced by tools so far.
-
getIterationCount
final Integer getIterationCount()
Number of iterations completed.
-
getBlackboard
final Blackboard getBlackboard()
The process blackboard, for conditions that depend on process state.
-
-
-
-