From 8810f4488230fb2d340dbab2a82d1a59d3cf6cbf Mon Sep 17 00:00:00 2001 From: "S.Listl" <S.Listl@SLISTL.aditosoftware.local> Date: Thu, 26 Mar 2020 16:59:07 +0100 Subject: [PATCH] WorkflowActivityType keyword added to KeywordRegistry --- process/KeywordRegistry_basic/process.js | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/process/KeywordRegistry_basic/process.js b/process/KeywordRegistry_basic/process.js index 5e6b5753b4..0e4eb1424f 100644 --- a/process/KeywordRegistry_basic/process.js +++ b/process/KeywordRegistry_basic/process.js @@ -253,4 +253,22 @@ $KeywordRegistry.exportTemplatePlaceOfUse = function(){return "ExportTemplatePla $KeywordRegistry.exportTemplateSeparator = function(){return "ExportTemplateSeparator";}; $KeywordRegistry.exportTemplateSeparator$comma = function(){return "COMMA";}; $KeywordRegistry.exportTemplateSeparator$semicolon = function(){return "SEMICOLON";}; -$KeywordRegistry.exportTemplateSeparator$tab = function(){return "TAB";}; \ No newline at end of file +$KeywordRegistry.exportTemplateSeparator$tab = function(){return "TAB";}; + +$KeywordRegistry.workflowActivityType = function(){return "WorkflowActivityType";}; +$KeywordRegistry.workflowActivityType$sequenceFlow = function(){return "sequenceFlow";}; +$KeywordRegistry.workflowActivityType$startEvent = function(){return "startEvent";}; +$KeywordRegistry.workflowActivityType$endEvent = function(){return "endEvent";}; +$KeywordRegistry.workflowActivityType$userTask = function(){return "userTask";}; +$KeywordRegistry.workflowActivityType$serviceTask = function(){return "serviceTask";}; +$KeywordRegistry.workflowActivityType$scriptTask = function(){return "scriptTask";}; +$KeywordRegistry.workflowActivityType$businessRuleTask = function(){return "businessRuleTask";}; +$KeywordRegistry.workflowActivityType$receiveTask = function(){return "receiveTask";}; +$KeywordRegistry.workflowActivityType$manualTask = function(){return "manualTask";}; +$KeywordRegistry.workflowActivityType$exclusiveGateway = function(){return "exclusiveGateway";}; +$KeywordRegistry.workflowActivityType$parallelGateway = function(){return "parallelGateway";}; +$KeywordRegistry.workflowActivityType$inclusiveGateway = function(){return "inclusiveGateway";}; +$KeywordRegistry.workflowActivityType$eventBasedGateway = function(){return "eventBasedGateway";}; +$KeywordRegistry.workflowActivityType$boundaryEvent = function(){return "boundaryEvent";}; +$KeywordRegistry.workflowActivityType$intermediateCatchEvent = function(){return "intermediateCatchEvent";}; +$KeywordRegistry.workflowActivityType$intermediateThrowEvent = function(){return "intermediateThrowEvent";}; -- GitLab