Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -182,13 +182,13 @@ object BikeLeasingProcessProcessApi {
}

object Errors {
val `APPLICATION INVALID`: BpmnError =
BpmnError("Application Invalid", "applicationInvalid")
val APPLICATION_INVALID: BpmnError =
BpmnError("Application_Invalid", "applicationInvalid")
}

object Escalations {
val `CONTRACT NOT SIGNED`: BpmnEscalation =
BpmnEscalation("Contract Not Signed", "contractNotSigned")
val CONTRACT_NOT_SIGNED: BpmnEscalation =
BpmnEscalation("Contract_Not_Signed", "contractNotSigned")
}

object Compensations {
Expand Down
4 changes: 2 additions & 2 deletions service/app/src/main/resources/bpmn/bike-leasing.bpmn
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<bpmn:message id="Message_HandoverReported" name="miravelo.handoverReported" />
<bpmn:message id="Message_ApplicationWithdrawn" name="miravelo.applicationWithdrawn" />
<bpmn:message id="Message_LeasingActivated" name="miravelo.leasingActivated" />
<bpmn:error id="Error_ApplicationInvalid" name="Application Invalid" errorCode="applicationInvalid" />
<bpmn:escalation id="Escalation_ContractNotSigned" name="Contract Not Signed" escalationCode="contractNotSigned" />
<bpmn:error id="Error_ApplicationInvalid" name="Application_Invalid" errorCode="applicationInvalid" />
<bpmn:escalation id="Escalation_ContractNotSigned" name="Contract_Not_Signed" escalationCode="contractNotSigned" />
<bpmn:process id="bikeLeasingProcess" name="MiraVelo Bike Leasing" isExecutable="true" camunda:historyTimeToLive="P180D">
<bpmn:startEvent id="startEvent_leasingRequestReceived" name="Leasing request received" camunda:asyncAfter="true">
<bpmn:extensionElements>
Expand Down
Loading