I can use a fluent builder API to create a simple BPMN model

XMLWordPrintable

    • Type: Feature Request
    • Resolution: Fixed
    • Priority: L3 - Default
    • 7.1.0, 7.1.0-alpha3
    • Affects Version/s: None
    • Component/s: bpmn model api
    • None

      AT:

      • I can create a Process containing the following elements:
      • NoneStartEvent
      • Exclusive- and ParallelGateway
      • User-, Service- and ScriptTask
      • NoneEndEvent
      • SequenceFlows
      • A quickstart exists

      Example:

      bpmnModelInstance = createProcess()
      .startEvent()
      .id("start-event-id")
      .connectTo("user-task-id")
      .done()
      .userTask()
      .id("user-task-id")
      .connectTo("end-event-id")
      .done()
      .endEvent()
      .id("end-event-id")
      .done()
      .done()

            Assignee:
            Unassigned
            Reporter:
            Sebastian Menski
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved: