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"

(Process and Activity Instance Lifecycle)
Line 26: Line 26:
 
== Queries  ==
 
== Queries  ==
  
*[[STP/Stardust/KnowledgeBase/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  
*[[STP/Stardust/KnowledgeBase/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,...  
*[[STP/Stardust/KnowledgeBase/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,...  
*[[STP/Stardust/KnowledgeBase/API/ExamplesofAPIUsage/GeneratingRoleBasedAPI|Generating Role/Grant-based Stardust API Queries]]  
+
*[[Stardust/Knowledge_Base/API/ExamplesofAPIUsage/GeneratingRoleBasedAPI|Generating Role/Grant-based Stardust API Queries]]  
*[[STP/Stardust/KnowledgeBase/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]]  
 
*[[Stardust/Knowledge Base/Java API/Process Instance Queries|Process Instance Queries]] - querying for process instances satisfying various search criteria  
 
*[[Stardust/Knowledge Base/Java API/Process Instance Queries|Process Instance Queries]] - querying for process instances satisfying various search criteria  
Line 39: Line 39:
  
 
== Organizational Structure & Authorizations  ==
 
== Organizational Structure & Authorizations  ==
*[[STP/Stardust/KnowledgeBase/API/ExamplesofAPIUsage/CreateDepartments|Creating Departments Programmatically]]<br>
+
*[[Stardust/Knowledge_Base/API/ExamplesofAPIUsage/CreateDepartments|Creating Departments Programmatically]]<br>
 
<br>
 
<br>
  
Line 48: Line 48:
 
== Document Management  ==
 
== Document Management  ==
  
*[[STP/Stardust/KnowledgeBase/API/DMSJavaAPIExample|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>
Line 54: Line 54:
 
== Other  ==
 
== Other  ==
  
*[[STP/Stardust/KnowledgeBase/API/ExamplesofAPIUsage/SupportCaseJavaAPI|Executing the Support Case Example using the Stardust Java API]]  
+
*[[Stardust/Knowledge_Base/API/ExamplesofAPIUsage/SupportCaseJavaAPI|Executing the Support Case Example using the Stardust Java API]]  
*[[STP/Stardust/KnowledgeBase/API/ExamplesofAPIUsage/CompleteAPIExample|Complete Stardust API Example]]
+
*[[Stardust/Knowledge_Base/API/ExamplesofAPIUsage/CompleteAPIExample|Complete Stardust API Example]]
  
 
<br>
 
<br>

Revision as of 11:08, 25 June 2013

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


Queries


Organizational Structure & Authorizations


Process Data


Document Management


Other


Back to the top