Skip to content

Commit 4253e89

Browse files
committed
Message name to start cos process is now helloCos
1 parent 30c8390 commit 4253e89

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

exercises/exercise-4.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ Solutions to this exercise are found on the branch `solutions/exercise-4`.
1818
## Exercise Tasks
1919
1. Replace the [End Event](https://docs.camunda.org/manual/7.17/reference/bpmn20/events/none-events/#none-end-event) of the `dsfdev_dicProcess` in the `dic-process.bpmn` file with a [Message End Event](../learning/concepts/bpmn/messaging.md#message-end-event). Give the [Message End Event](../learning/concepts/bpmn/messaging.md#message-end-event) a name and an ID and set its implementation to the `HelloCosMessage` class.
2020
Configure field injections `instantiatesCanonical`, `profile` and `messageName` in the BPMN model for the [Message End Event](https://docs.camunda.org/manual/7.17/reference/bpmn20/events/message-events/#message-end-event).
21-
Use `http://dsf.dev/fhir/StructureDefinition/task-hello-cos|#{version}` as the profile and `cosProcess` as the message name. Figure out what the appropriate `instantiatesCanonical` value is, based on the name (process definition key) of the process to be triggered.
21+
Use `http://dsf.dev/fhir/StructureDefinition/task-hello-cos|#{version}` as the profile and `helloCos` as the message name. Figure out what the appropriate `instantiatesCanonical` value is, based on the name (process definition key) of the process to be triggered.
2222
<details>
2323
<summary>Can't remember how instantiatesCanonical is built?</summary>
2424

2525
Read the concept [here](../learning/concepts/dsf/about-version-placeholders-and-urls.md#urls) again.
2626
</details>
2727
1. Modify the `dsfdev_cosProcess` in the `cos-process.bpmn` file and configure the message name of the [Message Start Event](../learning/concepts/bpmn/messaging.md#message-start-event) with the same value as the message name of the [Message End Event](../learning/concepts/bpmn/messaging.md#message-end-event) in the `dsfdev_dicProcess`.
28-
1. Create a new [StructureDefinition](http://hl7.org/fhir/R4/structuredefinition.html) with a [Task](../learning/concepts/fhir/task.md) profile for the `cosProcess` message.
28+
1. Create a new [StructureDefinition](http://hl7.org/fhir/R4/structuredefinition.html) with a [Task](../learning/concepts/fhir/task.md) profile for the `helloCos` message.
2929
<details>
3030
<summary>Don't know how to get started?</summary>
3131

tutorial-process/src/main/resources/bpe/hrp-process.bpmn

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@
4545
</bpmn:process>
4646
<bpmn:message id="Message_094gydj" name="helloHrp" />
4747
<bpmn:message id="Message_000lvyx" name="goodbyeDic" />
48-
<bpmn:message id="Message_33na25b" name="cosProcess" />
4948
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
5049
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="change_me">
5150
<bpmndi:BPMNShape id="Event_1azgt5l_di" bpmnElement="startHelloHrp">
@@ -82,4 +81,4 @@
8281
</bpmndi:BPMNEdge>
8382
</bpmndi:BPMNPlane>
8483
</bpmndi:BPMNDiagram>
85-
</bpmn:definitions>
84+
</bpmn:definitions>

0 commit comments

Comments
 (0)