Class ProcessDataContext.ProcessDataStack
- java.lang.Object
-
- org.camunda.bpm.engine.impl.interceptor.ProcessDataContext.ProcessDataStack
-
- Enclosing class:
- ProcessDataContext
protected static class ProcessDataContext.ProcessDataStack extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description ProcessDataStack(java.lang.String mdcName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clearMdcProperty()
java.lang.String
getCurrentValue()
boolean
isEmpty()
void
pushCurrentValue(java.lang.String value)
boolean
pushCurrentValueFromMdc()
void
removeCurrentValue()
void
updateMdcWithCurrentValue()
-
-
-
Method Detail
-
isEmpty
public boolean isEmpty()
-
getCurrentValue
public java.lang.String getCurrentValue()
-
pushCurrentValue
public void pushCurrentValue(java.lang.String value)
-
pushCurrentValueFromMdc
public boolean pushCurrentValueFromMdc()
- Returns:
- true if a value was obtained from the mdc and added to the stack
-
removeCurrentValue
public void removeCurrentValue()
-
clearMdcProperty
public void clearMdcProperty()
-
updateMdcWithCurrentValue
public void updateMdcWithCurrentValue()
-
-