Package org.jbpm.pvm.internal.history.events

Examples of org.jbpm.pvm.internal.history.events.ProcessInstanceEnd


   
    if (parent!=null) {
      parent.removeExecution(this);
     
    } else { // this is a process instance
      HistoryEvent.fire(new ProcessInstanceEnd(), this);
      fire(Event.END, getProcessDefinition());

      if (superProcessExecution!=null) {
        log.trace(toString()+" signals super process execution");
        superProcessExecution.signal();
View Full Code Here


      if (dbSession!=null) {
        dbSession.delete(this);
      }
     
    } else { // this is a process instance
      HistoryEvent.fire(new ProcessInstanceEnd(), this);
      fire(Event.END, getProcessDefinition());

      if (superProcessExecution!=null) {
        log.trace(toString()+" signals super process execution");
        superProcessExecution.signal();
View Full Code Here

TOP

Related Classes of org.jbpm.pvm.internal.history.events.ProcessInstanceEnd

Copyright © 2018 www.massapicom. 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.