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);
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4150697#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...