Package org.jbpm.svc.save

Examples of org.jbpm.svc.save.SaveLogsOperation


    SaveOperation[] operations = new SaveOperation[4];
    operations[0] = new CheckUnpersistableVariablesOperation();
    // first, save the execution data (process instance)
    operations[1] = new HibernateSaveOperation();
    // then, insert the logs, which may have references to the execution data
    operations[2] = new SaveLogsOperation();
    // last, save subprocess instances in cascade
    operations[3] = new CascadeSaveOperation();
    return Arrays.asList(operations);
  }
View Full Code Here

TOP

Related Classes of org.jbpm.svc.save.SaveLogsOperation

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.