activiti-bpmn-moddle

4.4.0 • Public • Published

activiti-bpmn-moddle

Build Status

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('activiti-bpmn-moddle/resources/activiti');
 
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

Extension

We include an extension that provides the necessary validation to clone certain properties, when making use of a library like bpmn-js. This allows to easily plug with out modeler solution, which works like the following example:

var BpmnJS = require('bpmn-js/lib/Modeler'),
    activitiExtensionModule = require('activiti-bpmn-moddle/lib'),
    activitiModdle = require('activiti-bpmn-moddle/resources/activiti');
 
var modeler = new BpmnJS({
    additionalModules: [
      activitiExtensionModule
    ],
    moddleExtensions: {
      activiti: activitiModdle
    }
  });

This extension makes use of dependency injection via didi and expects an events interface such as eventBus, where we plugin and listen to the property.clone event.

License

Use under the terms of the MIT license.

Package Sidebar

Install

npm i activiti-bpmn-moddle

Weekly Downloads

44

Version

4.4.0

License

MIT

Unpacked Size

98.4 kB

Total Files

85

Last publish

Collaborators

  • xmusoftware1208