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 TypeMethodDescriptionbooleanbooleancontainsVariable(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.IProcessingContextGet the attachedIProcessingContext.IValueHolder<?> getVariable(QName p_qnmVariable) booleanCheck if the BPEE context has an attachedIProcessingContext.voidvoidputVariable(QName p_qnmVariable, IValueHolder<?> p_vh) voidvoidremoveVariable(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:
trueif the BPEE context has an attached processing context, orfalseotherwise.
-
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.
-