This content has been marked as final.
Show 1 reply
-
1. Re: get variables from executionccontext
ajanz May 14, 2008 8:09 AM (in response to ajanz)should work like this
Iterator it = ctx.getTaskInstance().getVariables().keySet().iterator(); while ( it.hasNext()){ // key ermitteln String key = (String) it.next(); // wert ermitteln String val = (String) ctx.getTaskInstance().getVariable(key);