-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d557b54
commit 0f2f7d7
Showing
135 changed files
with
7,045 additions
and
6,048 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
# Demo server for testing purposes | ||
elk.server.url=http://acm-arkcase/arkcase/acm-elastic | ||
elk.server.url=http://arkcase-ce.local/arkcase/acm-elastic | ||
elk.server.port=5601 | ||
elk.server.internal.url=http://acm-arkcase/arkcase/acm-elastic | ||
elk.server.internal.url=http://arkcase-ce.local/arkcase/acm-elastic | ||
elk.server.internal.port=5601 | ||
elk.server.user= | ||
elk.server.password= | ||
elk.dashboard.url=/app/kibana#/dashboard/693034a0-6ca5-11e7-8049-858c370356cc | ||
|
||
slk.server.internal.url=https://acm-solr | ||
slk.server.internal.url=https://arkcase-ce.local | ||
slk.server.internal.port=8983 | ||
slk.server.external.url=https://acm-arkcase/arkcase | ||
slk.server.external.url=https://arkcase-ce.local/arkcase | ||
slk.server.dashboard.url=/solr/banana/src/index.html | ||
slk.server.dashboardfile.url=#/dashboard/file/ |
File renamed without changes.
File renamed without changes.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<definitions targetNamespace="http://activiti.org/bpmn20" xmlns:activiti="http://activiti.org/bpmn" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL | ||
http://www.omg.org/spec/BPMN/2.0/20100501/BPMN20.xsd"> | ||
|
||
<process id="cmComplaintWorkflow" name="Complaint review and approval process"> | ||
|
||
<startEvent id="complaintSubmittedForApproval"/> | ||
|
||
<sequenceFlow id="initiatedToApproval" sourceRef="complaintSubmittedForApproval" targetRef="approveComplaint"/> | ||
|
||
<userTask id="approveComplaint" name="Approve Complaint '${complaintTitle}'" activiti:assignee="${currentApprover}" | ||
activiti:dueDate="P3D" activiti:priority="50"> | ||
<!-- note: "P3D" above = "Period of 3 days from now". Any valid ISO801 duration expression will work. --> | ||
<!-- note: intellij does not like the activiti:priority attribute, but it works anyway. 50 is the default | ||
value. --> | ||
<documentation> | ||
Approve the complaint; it will become part of a new case file. | ||
</documentation> | ||
<multiInstanceLoopCharacteristics isSequential="false" activiti:collection="approvers" | ||
activiti:elementVariable="currentApprover"/> | ||
</userTask> | ||
|
||
<sequenceFlow id="approvalToEnd" sourceRef="approveComplaint" targetRef="done"/> | ||
|
||
<endEvent id="done"/> | ||
|
||
</process> | ||
|
||
</definitions> |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.