[jboss-user] [JBoss jBPM] - Re: How to get the tasks instance list when there is no swim

2008-02-09 Thread kukeltje
Or build a custom hibernate query View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4128074#4128074 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4128074 ___ jboss-user mailing list

[jboss-user] [JBoss jBPM] - Re: How to get the tasks instance list when there is no swim

2008-02-08 Thread kukeltje
tasks do not have to be assigned to swimlanes. You can assign actors to them and those are used to get tasklists for. If they are assigned to swimlanes, actors/groups are taken from those View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4127904#4127904 Reply to

[jboss-user] [JBoss jBPM] - Re: How to get the tasks instance list when there is no swim

2008-02-08 Thread simonbaker
Would something like: | JbpmContext jbpmContext = jbpmConfiguration.createJbpmContext(); | | ProcessInstance procinst = jbpmContext.getProcessInstance(longMyProcId); | | TaskMgmtInstance taskmgmtinst = procinst.getTaskMgmtInstance(); | | Collection collTaskInstances =