UnitTest Simple Java Command
This HowTo shows along an example how to unittest a simple Java Command.
UnitTest Java Command with Services
This HowTo shows along an example how to UnitTest a Java Command with Services.
UnitTest a Java Command with LiteService and InjectService
This HowTo shows along an example how to UnitTest a Java Command with LiteServices and InjectServices.
Step by Step Simple Java Command
This HowTo shows along an example step by step how to write a simple Command.
How to Integrate Services in your Command
This guide demonstrates how to integrate business logic in the form of Services into your Commands.
PublishCommandsLocal
Publishing Commands Table of Contents Local Publish Maven Local Publish Maven mvn install:install-file -Dfile=your-downloaded-file.jar -DgroupId=org.example -DartifactId=example-commands -Dversion=1.0.0 -Dpackaging=jar Last updated 2025-04-07 09:26:29 +0200
CommandUsage
/** * @workflowDocu Simple command that uses a service with self-cleanup */ @JavaCommand @CommandGroup(„org.example“) public class CacheWriteRead { /** * @workflowDocu Service that cleans itself up */ @Service (1) private CacheService cacheService; /** * @workflowDocu The Value to cache in the service */ @Persistent private int valueToCache; /** * @workflowDocu The cache value before the […]
How To cleanup a service
This howto demonstrates how to implement a service that automatically registers itself to the engine to receive a cleanup
Open File Dir
PAK Commands – Choose File/Directory Table of Contents 1. Summary 2. Examples 2.1. Choose File 2.2. Choose Directory 1. Summary The Command ChooseFileOrDirectory lets the user choose from the local file system. The command gives an option to choose a file or a directory. Both commands can only be used inside the Workflow Executor 2. […]
Human Tasks Overview & How to use them
Collection of all Human Tasks their use cases