sfr-adapa-activiti-bpmn-moddle
v1.0.0
Published
Activiti moddle extensions for BPMN 2.0
Downloads
2
Maintainers
Readme
activiti-bpmn-moddle
This project defines the activiti namespace extensions for BPMN 2.0 as a moddle descriptor.
Usage
Use it together with bpmn-moddle to validate activiti BPMN 2.0 extensions.
var BpmnModdle = require('bpmn-moddle');
var activitiModdle = require('sfr-adapa-activiti-bpmn-moddle/resources/camunda');
var moddle = new BpmnModdle({ activiti: activitiModdle });
var serviceTask = moddle.create('bpmn:ServiceTask', {
'javaDelegate': 'my.company.SomeDelegate'
});
Building the Project
To run the test suite that includes XSD schema validation you must have a Java JDK installed and properly exposed through the JAVA_HOME
variable.
Execute the test via
npm test
Perform a complete build of the application via
npm run all
bpmn-js Extension
We include an extension that makes bpmn-js copy and replace mechanisms aware of activiti properties.
var BpmnJS = require('bpmn-js/lib/Modeler'),
activitiExtensionModule = require('sfr-adapa-activiti-bpmn-moddle/lib'),
activitiModdle = require('sfr-adapa-activiti-bpmn-moddle/resources/camunda');
var modeler = new BpmnJS({
additionalModules: [
activitiExtensionModule
],
moddleExtensions: {
activiti: activitiModdle
}
});
This extension hooks into the copy mechanism provided by the BPMN editor and ensures activiti properties are kept and or dropped on copy and element replace.
License
Use under the terms of the MIT license.