sfr-adapa-activiti-bpmn-moddle

1.0.0 • Public • Published

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.

Package Sidebar

Install

npm i sfr-adapa-activiti-bpmn-moddle

Weekly Downloads

2

Version

1.0.0

License

MIT

Unpacked Size

112 kB

Total Files

79

Last publish

Collaborators

  • anass_nebdaoui