Package de.uplanet.lucy.bpee
Interface IBpeeExecutionContext
- All Superinterfaces:
de.uplanet.util.IDumpable
- All Known Implementing Classes:
de.uplanet.lucy.bpee.AbstractDelegatingBpeeExecutionContext
,BpeeEngine.MergedBpeeExecutionContext
public interface IBpeeExecutionContext
extends de.uplanet.util.IDumpable
-
Method Summary
Modifier and TypeMethodDescriptionboolean
boolean
containsVariable
(QName p_qnmVariable) Get a set, ordered first by the variable's namespace URI, and then by the variable's local name.de.uplanet.lucy.server.IProcessingContext
Get the attachedIProcessingContext
.IValueHolder
<?> getVariable
(QName p_qnmVariable) boolean
Check if the BPEE context has an attachedIProcessingContext
.void
void
putVariable
(QName p_qnmVariable, IValueHolder<?> p_vh) void
void
removeVariable
(QName p_qnmVariable) Methods inherited from interface de.uplanet.util.IDumpable
dump
-
Method Details
-
hasProcessingContext
boolean hasProcessingContext()Check if the BPEE context has an attachedIProcessingContext
.- Returns:
true
if the BPEE context has an attached processing context, orfalse
otherwise.
-
getProcessingContext
de.uplanet.lucy.server.IProcessingContext getProcessingContext()Get the attachedIProcessingContext
.- Returns:
- The attached processing context, or
null
.
-
contains
-
get
-
put
-
remove
-
containsVariable
-
getVariable
-
putVariable
-
removeVariable
-
getOrderedVariableKeySet
Get a set, ordered first by the variable's namespace URI, and then by the variable's local name.- Returns:
- The ordered set.
-