Package org.jboss.bpm.monitor.model.bpaf

Examples of org.jboss.bpm.monitor.model.bpaf.Event.addData()


           
            //set default value for activity name
            target.setActivityName("n/a");

            // required for bpel2svg. See https://jira.jboss.org/browse/RIFTSAW-264
            target.addData(new LineNumber(bpelEvent.getLineNo()));
           
            if (source instanceof ProcessInstanceEvent) {
              ProcessInstanceEvent instanceEvent = (ProcessInstanceEvent) source;
              target.setProcessInstanceID(instanceEvent.getProcessInstanceId().toString());
            }
View Full Code Here


           //put the data as a property.
           Tuple data = new Tuple();
           data.setName("data");
           data.setValue(getProcessEventAsString(source));
          
           target.addData(data);
          
            // can return null and thus invalidate the event
            target = mapping.adoptDetails(target, source);
        }
       
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.