Executes a Connector in the context of a process.
The ClassLoader uses the process UUID to load the connectors' class and the process data's initial values are added to the groovy evaluation context.
POST /API/runtimeAPI/executeConnector/{definitionUUID}
parameters=…&connectorClassName=…&options=…
API Example:
AbstractRemoteRuntimeAPI.executeConnector({'definitionUUID': /* definitionUUID the process definition UUID */, 'parameters': /* parameters the input parameters to set the connector. */, 'connectorClassName': /* connectorClassName the Connector class name */, 'options': /* options the options map (domain, queyList, user) */});
Executes a Connector in the context of a process.
The ClassLoader uses the process UUID to load the connectors' class and the process data's initial values are added to the groovy evaluation context.
Output:
java.util.Map<java.lang.String,java.lang.Object> - the result of the connector execution
Form parameters:
parameters - the input parameters to set the connector.
connectorClassName - the Connector class name
options - the options map (domain, queyList, user)