Hi,
From a really nice guy from Germany I got the question to help him extending jBPM with an xforms ui (Finally!!!!) From the docs I got imo double signals. One is that I could put a custom task controller on my tasks like
<task name="clean ceiling">
| <controller class="com.yourcom.CleanCeilingTaskControllerHandler">
| -- here goes your task controller handler configuration --
| </controller>
| </task>
I could put my own config in there by either bean, field org constructor config-type. But it seems that the TaskInstance class still wants taskFormParameters, so this is usable only for minor deviations from the default taskinstance behaviour right?
If I realy want other behaviour, like not using taskFormParameters for displaying task etc, I need to override the taskInstance behaviour and create probably my own TaskInstance like it says in http://docs.jboss.com/jbpm/v3/userguide/taskmanagement.html#customizingtaskinstances
Since that basically overrides the default Task behaviour I can also put anything in the task as a config but use just
<task name="clean ceiling">
| <controller>
| -- here goes your task controller handler configuration --
| </controller>
| </task>
Ronald
(as a jBPM user ;-) )
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3887173#3887173
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3887173
|