[jboss-user] [JBoss jBPM] - Re: get variables from executionccontext
AJanz
do-not-reply at jboss.com
Wed May 14 08:09:18 EDT 2008
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#4150697
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4150697
More information about the jboss-user
mailing list