1 56 package org.opencrx.kernel.workflow; 57 58 import java.util.Map ; 59 60 import org.opencrx.kernel.layer.application.OpenCrxKernel_1; 61 import org.opencrx.kernel.layer.application.SynchWorkflow_1_0; 62 import org.openmdx.compatibility.base.dataprovider.cci.DataproviderObject_1_0; 63 import org.openmdx.compatibility.base.dataprovider.cci.RequestCollection; 64 import org.openmdx.compatibility.base.dataprovider.cci.ServiceHeader; 65 import org.openmdx.compatibility.base.naming.Path; 66 67 public class PrintConsole 68 implements SynchWorkflow_1_0 { 69 70 73 public void execute( 74 DataproviderObject_1_0 userHome, 75 Path targetObjectIdentity, 76 Map params, 77 Path wfProcessInstanceIdentity, 78 ServiceHeader header, 79 RequestCollection delegation, 80 OpenCrxKernel_1 plugin 81 ) { 82 System.out.println("executing workflow " + this.getClass().getName()); 83 System.out.println("target=" + targetObjectIdentity); 84 System.out.println("wfProcessInstance=" + wfProcessInstanceIdentity); 85 System.out.println("params=" + params); 86 } 87 88 } 89 90 | Popular Tags |