Package org.kie.api.runtime
Interface Context
- 
- All Known Subinterfaces:
- RequestContext
 
 public interface ContextThe context of an execution
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description Objectget(String identifier)Return the value associated with the given identifier in this contextStringgetName()The unique name of this contextbooleanhas(String identifier)Return true if the given identifier has an associated value in this contextvoidremove(String identifier)Remove the value associated with the given identifier in this contextvoidset(String identifier, Object value)Set a value on this context with this given identifier
 
- 
- 
- 
Method Detail- 
getNameString getName() The unique name of this context
 - 
getObject get(String identifier) Return the value associated with the given identifier in this context
 - 
setvoid set(String identifier, Object value) Set a value on this context with this given identifier
 - 
removevoid remove(String identifier) Remove the value associated with the given identifier in this context
 - 
hasboolean has(String identifier) Return true if the given identifier has an associated value in this context
 
- 
 
-