Inspect and Edit Datastore Values
A guide explaining how to inspect and edit datastore values.
Adding a datastore from a file
A guide explaining how to add datastore from a file.
UnitTest Java Command with Services
This HowTo shows along an example how to UnitTest a Java Command with Services.
UnitTest Simple Java Command
This HowTo shows along an example how to unittest a simple Java Command.
Step by Step Simple Java Command
This HowTo shows along an example step by step how to write a simple Command.
UnitTest a Java Command with LiteService and InjectService
This HowTo shows along an example how to UnitTest a Java Command with LiteServices and InjectServices.
How to Integrate Services in your Command
This guide demonstrates how to integrate business logic in the form of Services into your Commands.
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 […]
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-09-30 16:02:30 +0200
How To cleanup a service
This howto demonstrates how to implement a service that automatically registers itself to the engine to receive a cleanup