Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
dwh-api
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
AKTIN
dwh-api
Commits
f401805c
Commit
f401805c
authored
Apr 28, 2016
by
rwm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
plantuml diagrams and site added
parent
4b156b66
Pipeline
#1275
skipped
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
98 additions
and
1 deletion
+98
-1
pom.xml
pom.xml
+27
-1
src/site/markdown/communication.md
src/site/markdown/communication.md
+15
-0
src/site/plantuml/cda-import.txt
src/site/plantuml/cda-import.txt
+9
-0
src/site/plantuml/outside-communication.txt
src/site/plantuml/outside-communication.txt
+30
-0
src/site/site.xml
src/site/site.xml
+17
-0
No files found.
pom.xml
View file @
f401805c
...
...
@@ -24,7 +24,6 @@
<plugin>
<groupId>
org.codehaus.mojo
</groupId>
<artifactId>
jaxb2-maven-plugin
</artifactId>
<version>
2.2
</version>
<executions>
<execution>
<id>
schemagen
</id>
...
...
@@ -40,6 +39,33 @@
</sources>
</configuration>
</plugin>
<plugin>
<!-- this is only needed for generating sequence diagrams
for the documentation -->
<groupId>
com.github.jeluard
</groupId>
<artifactId>
plantuml-maven-plugin
</artifactId>
<version>
1.2
</version>
<executions>
<execution>
<id>
plantuml
</id>
<phase>
pre-site
</phase>
<goals>
<goal>
generate
</goal>
</goals>
</execution>
</executions>
<configuration>
<sourceFiles>
<directory>
${basedir}/src/site/plantuml
</directory>
<includes>
<include>
**
</include>
</includes>
</sourceFiles>
<outputDirectory>
${project.build.directory}/site/plantuml
</outputDirectory>
</configuration>
</plugin>
</plugins>
</build>
...
...
src/site/markdown/communication.md
0 → 100644
View file @
f401805c
Kommunikation zwischen AKTIN-Komponenten
========================================
Kommunikation über das Internet
--------
Test
![
UML Diagramm
][
outside_comm
]
[
outside_comm
]:
plantuml/outside-communication.png
"Kommunikation über das Internet"
src/site/plantuml/cda-import.txt
0 → 100644
View file @
f401805c
@startuml
participant "Emergency Room" as ER
box "AKTIN Data Warehouse"
participant "CDA Interface" as CDA
database Database
end box
ER->CDA : CDA Document
CDA->Database : De-identified data
@enduml
\ No newline at end of file
src/site/plantuml/outside-communication.txt
0 → 100644
View file @
f401805c
@startuml
box "Hospital"
actor "Emergency Room" as ER
participant "AKTIN Data Warehouse" as DWH
end box
participant "AKTIN Broker" as Broker
actor "Epidemiologist" as Epi
actor Researcher
ER->DWH : Emergency note records
...
DWH->Broker : ask for query requests
Broker->DWH : new query request
DWH->ER : notification
...
ER->DWH : new request verified
DWH->DWH : perform query
opt
DWH->ER : result notification
...
ER->DWH : result verified
end
DWH->Broker : submit results
...waiting for results from other hospitals...
Broker->Epi : complete results
Epi->Epi : performs analysis
Epi->Researcher : analysis results
opt
Epi->Researcher : k-anonymized Data set
end
@enduml
\ No newline at end of file
src/site/site.xml
0 → 100644
View file @
f401805c
<project>
<skin>
<groupId>
org.apache.maven.skins
</groupId>
<artifactId>
maven-fluido-skin
</artifactId>
<version>
1.4
</version>
</skin>
<body>
<menu
name=
"Communication"
>
<item
href=
"communication.html"
name=
"Communication"
/>
</menu>
<menu
ref=
"reports"
inherit=
"top"
/>
<!--
<menu ref="modules" />
<menu ref="parent" />
-->
</body>
</project>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment