Tasks around the server

Recovering an application

In the workflow module, you may recover every created application. In the following example,we show how to get one from its system name.

public void server_getCatalog( IContext context, IWorkflowModule workflowModule ) throws WorkflowModuleException
{
        // retrieving an application from its system name
        ICatalog catalog = workflowModule.getCatalog( context, "Education" );
        System.out.println( "Application : " + catalog.getLabel() );
}