-
Notifications
You must be signed in to change notification settings - Fork 1
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
54fbfd2
commit e06a673
Showing
4 changed files
with
63 additions
and
21 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
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 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 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,30 @@ | ||
@startuml | ||
title: Open Catalogi | ||
footer: Open Catalogi | Components | ||
header: Componenten Matrix | ||
|
||
|
||
package "Layer 5 (interactie)" { | ||
[//Publicatie platform//\nOpen Tilburg (Acato)] as userUi | ||
[//Beheer Interface//\nBeheer Tilburg (Acato)] as adminUI | ||
} | ||
|
||
|
||
package "Layer 2 (api)" { | ||
[//Zoeken API//\nOC Next Cloud App (Conduction)] as searchAPI | ||
[//Beheer API//\nOC Next Cloud App (Conduction)] as beheerAPI | ||
} | ||
|
||
package "Layer 1 (data)" { | ||
database "//Zoek index//\nElastic Search (Elastic)" as elastic | ||
database "//Objecten opslag//\nOverige Objecten (Maykin)" as ORC | ||
database "//DMS//\nOpen Zaak (Maykin)" as DMS | ||
} | ||
|
||
adminUI .down.> beheerAPI: Opslaan | ||
userUi <.down. searchAPI: Opzoeken | ||
beheerAPI .down.> ORC: Opslaan | ||
beheerAPI .down.> DMS: Opslaan | ||
searchAPI <.down. elastic: Zoeken | ||
ORC .right.> elastic: Updaten | ||
@enduml |