We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c22688 commit 12f34b9Copy full SHA for 12f34b9
src/main/java/io/github/cadenceoss/iwf/core/Workflow.java
@@ -53,6 +53,12 @@ default List<CommunicationMethodDef> getCommunicationSchema() {
53
return Collections.emptyList();
54
}
55
56
+ /**
57
+ * Define the workflowType of this workflow definition. By default(when return empty string), it's the simple name of the workflow instance,
58
+ * which should be the case for most scenarios.
59
+ * <p>
60
+ * In case of dynamic workflow implementation, return customized values based on constructor input.
61
+ */
62
default String getWorkflowType() {
63
return "";
64
0 commit comments