Created
December 11, 2019 02:18
-
-
Save romartin/4a8c88ffa7b245f132347ca3a95a8619 to your computer and use it in GitHub Desktop.
WorkDefinitions.wid
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
[ | |
"name" : "Email", | |
"parameters" : [ | |
"From" : new StringDataType(), | |
"To" : new StringDataType(), | |
"Subject" : new StringDataType(), | |
"Body" : new StringDataType() | |
], | |
"displayName" : "Email", | |
"icon" : "defaultemailicon.gif" | |
], | |
[ | |
"name" : "Log", | |
"parameters" : [ | |
"Message" : new StringDataType() | |
], | |
"displayName" : "Log", | |
"icon" : "defaultlogicon.gif" | |
], | |
[ | |
"name" : "WebService", | |
"parameters" : [ | |
"Url" : new StringDataType(), | |
"Namespace" : new StringDataType(), | |
"Interface" : new StringDataType(), | |
"Operation" : new StringDataType(), | |
"Parameter" : new StringDataType(), | |
"Endpoint" : new StringDataType(), | |
"Mode" : new StringDataType() | |
], | |
"results" : [ | |
"Result" : new ObjectDataType(), | |
], | |
"displayName" : "WS", | |
"icon" : "defaultservicenodeicon.png" | |
], | |
[ | |
"name" : "Rest", | |
"parameters" : [ | |
"ContentData" : new StringDataType(), | |
"Url" : new StringDataType(), | |
"Method" : new StringDataType(), | |
"ConnectTimeout" : new StringDataType(), | |
"ReadTimeout" : new StringDataType(), | |
"Username" : new StringDataType(), | |
"Password" : new StringDataType() | |
], | |
"results" : [ | |
"Result" : new ObjectDataType(), | |
], | |
"displayName" : "REST", | |
"icon" : "defaultservicenodeicon.png" | |
], | |
[ | |
"name" : "BusinessRuleTask", | |
"parameters" : [ | |
"Language" : new StringDataType(), | |
"KieSessionName" : new StringDataType(), | |
"KieSessionType" : new StringDataType() | |
], | |
"displayName" : "Business Rule Task", | |
"icon" : "defaultbusinessrulesicon.png", | |
"category" : "Decision tasks" | |
], | |
[ | |
"name" : "DecisionTask", | |
"parameters" : [ | |
"Language" : new StringDataType(), | |
"Namespace" : new StringDataType(), | |
"Model" : new StringDataType(), | |
"Decision" : new StringDataType() | |
], | |
"displayName" : "Decision Task", | |
"icon" : "defaultdecisionicon.png", | |
"category" : "Decision tasks" | |
], | |
[ | |
"name" : "Milestone", | |
"parameters" : [ | |
"Condition" : new StringDataType() | |
], | |
"displayName" : "Milestone", | |
"icon" : "defaultmilestoneicon.png", | |
"category" : "Milestone" | |
] | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment