Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Stardust/Knowledge Base/API/A first Look at the Stardust API"

m (New page: This arctile will give you first taste of EPM API. I assume that you have already installed EPM modeler and have EMP runtime environment setup with simple process model deployed in it. If ...)
 
m
Line 1: Line 1:
This arctile will give you first taste of EPM API. I assume that you have already installed EPM modeler and have EMP runtime environment setup with simple process model deployed in it. If you haven't done this. please follow this documentation [http:// link to come soon].   Step 1. You will get a reference to EPM workflow service. For time being you can view it as any simple spring bean or even simple java POJO. Step 2. Having a reference to workflow service, you can start a process with by using following API method; workflowService.startPrcoesss("LeaveApplicationProcess");
+
This article will give you first taste of EPM API. I assume that you have already installed EPM modeler and have EMP runtime environment setup with simple process model deployed in it. If you haven't done this, please follow this documentation [http:// link to come soon].  
 +
 
 +
Step 1. You will get a reference to EPM workflow service. For time being you can view it as any simple spring bean or even simple java POJO.  
 +
 
 +
Step 2. Having a reference to workflow service, you can start a process with by using following API method;  
 +
<pre>workflowService.startPrcoesss("LeaveApplicationProcess"); </pre>

Revision as of 05:41, 19 October 2011

This article will give you first taste of EPM API. I assume that you have already installed EPM modeler and have EMP runtime environment setup with simple process model deployed in it. If you haven't done this, please follow this documentation [http:// link to come soon].

Step 1. You will get a reference to EPM workflow service. For time being you can view it as any simple spring bean or even simple java POJO.

Step 2. Having a reference to workflow service, you can start a process with by using following API method;

workflowService.startPrcoesss("LeaveApplicationProcess"); 

Back to the top