Skip to content

Instantly share code, notes, and snippets.

@meyerdan
Created February 20, 2014 11:59
Show Gist options
  • Save meyerdan/9112021 to your computer and use it in GitHub Desktop.
Save meyerdan/9112021 to your computer and use it in GitHub Desktop.
Fluent Bpmn Model API Example
BpmnModelInstance modelInstance = Bpmn.createProcess()
.name("Example process")
.executable()
.startEvent()
.userTask()
.name("Some work to do")
.endEvent()
.done();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment