Demian Calcaprina [http://community.jboss.org/people/calca] created the discussion
"Re: Can a POJO be Parameter Mapped?" To view the discussion, visit: http://community.jboss.org/message/618912#618912 -------------------------------------------------------------- Gary, if you use the default work item : org.jbpm.bpmn2.handler.ServiceTaskHandler I think the parameter has to be called "Parameter". And then it is invoked: ... * Object parameter = workItem.getParameter("Parameter");* try { Class<?> c = Class.forName(i); Object instance = c.newInstance(); Class<?>[] classes = null; Object[] params = null; if (parameterType != null) { classes = new Class<?>[] { Class.forName(parameterType) }; params = new Object[] { parameter }; } Method method = c.getMethod(operation, classes); * Object result = method.invoke(instance, params);* Demian -------------------------------------------------------------- Reply to this message by going to Community [http://community.jboss.org/message/618912#618912] Start a new discussion in jBPM at Community [http://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2034]
_______________________________________________ jboss-user mailing list [email protected] https://lists.jboss.org/mailman/listinfo/jboss-user
