Package org.kie.api.runtime
Interface Context
- All Known Subinterfaces:
RequestContext
public interface Context
The context of an execution
-
Method Summary
Modifier and TypeMethodDescriptionReturn the value associated with the given identifier in this contextgetName()The unique name of this contextbooleanReturn true if the given identifier has an associated value in this contextvoidRemove the value associated with the given identifier in this contextvoidSet a value on this context with this given identifier
-
Method Details
-
getName
String getName()The unique name of this context -
get
Return the value associated with the given identifier in this context -
set
Set a value on this context with this given identifier -
remove
Remove the value associated with the given identifier in this context -
has
Return true if the given identifier has an associated value in this context
-