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/Java API"

(Queries)
 
(11 intermediate revisions by 4 users not shown)
Line 19: Line 19:
 
*[[Stardust/Knowledge Base/API/ExamplesofAPIUsage/CompleteAnActivity|Complete an Activity]]  
 
*[[Stardust/Knowledge Base/API/ExamplesofAPIUsage/CompleteAnActivity|Complete an Activity]]  
 
*[[Stardust/Knowledge Base/API/ExamplesofAPIUsage/AttachADocument|Attaching a document to a process instance]]<br>  
 
*[[Stardust/Knowledge Base/API/ExamplesofAPIUsage/AttachADocument|Attaching a document to a process instance]]<br>  
 +
*[[Stardust/Knowledge Base/API/ExamplesofAPIUsage/LinkProcesses|Linking two process instances]]<br>
  
 
== Monitoring, Events and Event Actions ==
 
== Monitoring, Events and Event Actions ==
Line 31: Line 32:
  
 
*[[Stardust/Knowledge Base/API/JavaAPICookbook/QueryingWorklists|Querying Worklists]] - querying different user, user group, role or organization worklists based on different predicates  
 
*[[Stardust/Knowledge Base/API/JavaAPICookbook/QueryingWorklists|Querying Worklists]] - querying different user, user group, role or organization worklists based on different predicates  
 +
*[[Stardust/Knowledge Base/API/JavaAPICookbook/QueryingWorklist Utility|Querying Worklist Utility]] - a utility program to provide a list of WorkItems (Activity Instances) for a given combination of user, partition, role and department
 
*[[Stardust/Knowledge Base/API/JavaAPICookbook/Querying Workflow and Runtime|Querying Worklow and Runtime Information]] - querying e.g. model information, users having a certain role, the logged in user,...  
 
*[[Stardust/Knowledge Base/API/JavaAPICookbook/Querying Workflow and Runtime|Querying Worklow and Runtime Information]] - querying e.g. model information, users having a certain role, the logged in user,...  
 +
*[[Stardust/Knowledge_Base/API/JavaAPICookbook/Querying_Users_entitled_to_perform_an_Activity| Querying Users entitled to perform an Activity]] - Querying Users with grants to perform a certain activity or activity instance.
 
*[[Stardust/Knowledge Base/API/JavaAPICookbook/Querying Activity Instance List|Querying Activity Instance List ]] - querying e.g. Activity Instance List, Activity Instance having a certain state,...  
 
*[[Stardust/Knowledge Base/API/JavaAPICookbook/Querying Activity Instance List|Querying Activity Instance List ]] - querying e.g. Activity Instance List, Activity Instance having a certain state,...  
*[[Stardust/Knowledge Base/API/ExamplesofAPIUsage/GeneratingRoleBasedAPI|Generating Role/Grant-based Stardust API Queries]]  
+
*[[Stardust/Knowledge Base/API/ExamplesofAPIUsage/GeneratingRoleBasedAPI|Generating Role/Grant-based Stardust API Queries]]
 +
*[[Stardust/Knowledge Base/API/JavaAPICookbook/CheckingUserSpecificRole|Checking if a user has specific role]]
 +
*[[Stardust/Knowledge Base/API/JavaAPICookbook/FetchingOrganizationOfProviderModel |Fetching organization of Provider Model]]
 +
*[[Stardust/Knowledge Base/API/JavaAPICookbook/FetchingPIandAIHistoricalEvents |Fetching PI and AI Historical Events]]   
 
*[[Stardust/Knowledge Base/API/ExamplesofAPIUsage/ActivityEventHibernateInitially|Checking Activity Event and Hibernate initially Status]]  
 
*[[Stardust/Knowledge Base/API/ExamplesofAPIUsage/ActivityEventHibernateInitially|Checking Activity Event and Hibernate initially Status]]  
 
*[[Stardust/Knowledge Base/Java API/Queries/Partitions|Queries related to Audit Trail Partitions, e.g. listing existing partitions]]  
 
*[[Stardust/Knowledge Base/Java API/Queries/Partitions|Queries related to Audit Trail Partitions, e.g. listing existing partitions]]  
Line 41: Line 47:
 
*History of a ProcessInstance  
 
*History of a ProcessInstance  
 
*Listing Data Mappings of an Activity
 
*Listing Data Mappings of an Activity
 +
*[[Stardust/Knowledge Base/API/JavaAPICookbook/ExposingRESTService |
 +
Exposing REST service]]
  
 
<br>
 
<br>
Line 57: Line 65:
  
 
== Document Management  ==
 
== Document Management  ==
 
+
*[[Stardust/Knowledge_Base/Java_API/Document_Management|DMS Java API Examples]]
*[[Stardust/Knowledge Base/API/DMSJavaAPIExample|DMS Java API Examples]]  
+
 
*[[Stardust/Knowledge Base/Java API/Document Security|Document Security]]
 
*[[Stardust/Knowledge Base/Java API/Document Security|Document Security]]
 
+
<br>
 
+
<br>  
+
  
 
== Other  ==
 
== Other  ==

Latest revision as of 09:29, 15 March 2016

NOTE to authors: Please make sure to specify the version on which the example was tested. 
All version numbers < 7.0 refer to the Infinity Process Platform (IPP)


NOTE: The ServiceFactory caches the authenticated Stardust services for the user. For use in a production environment it is important that the clients cache the ServiceFactory per user. Not caching the ServiceFactory means that a new login will be performed for every interaction with the engine.

Process and Activity Instance Lifecycle

  • Stardust Workflow Service in Action
    • Starting a Process
    • Activating and completing an Activity
    • Aborting an Activity
    • Delegating an Activity
    • Suspending an Activity
    • Fetching the User Work List
    • Submitting Process Data

Monitoring, Events and Event Actions

Queries


Organizational Structure & Authorizations


Process Data


Document Management


Other


Back to the top