Usage of @workflowDocu on command-level
/**
* @workflowDocu This command gets an element by its id. (1)
*/
@JavaCommand
@CommandGroup("Element")
public class GetElement {
/**
* @workflowDocu Id of the element to fetch (2)
*/
@Persistent
private String id;
[...]
}
Last updated 2024-07-05 11:16:52 +0200