You are here

getDefinitionByName

getDefinitionByName(name) gets the workflow definitions corresponding to the specified name.

Parameters

name
A string representing the name of the workflow definition to return.

Returns

Returns the workflow definition with the given name or null if no workflow definition with the given name exists.

Example

    var name = "activiti$activitiAdhoc";
    
    model.definition = workflow.getDefinitionByName(name);