From a3c8f5bd3c0ad83491544fca38cee3aacd6a4647 Mon Sep 17 00:00:00 2001 From: Hallvard Traetteberg <hal@ntnu.no> Date: Thu, 16 Sep 2021 09:01:11 +0200 Subject: [PATCH] =?UTF-8?q?restapi=20og=20restserver=20er=20sl=C3=A5tt=20s?= =?UTF-8?q?ammen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- todolist/architecture.puml | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/todolist/architecture.puml b/todolist/architecture.puml index ba5384b..f03073a 100644 --- a/todolist/architecture.puml +++ b/todolist/architecture.puml @@ -1,4 +1,4 @@ -@startuml architecture +@startuml component core { package todolist.core @@ -30,21 +30,18 @@ fxui ..> javafx fxui ..> fxml fxui ..> fxutil -component restapi { - package todolist.restapi -} - -todolist.restapi ..> todolist.core - component jaxrs { } -restapi ..> jaxrs - -component restserver { +component rest { + package todolist.restapi package todolist.restserver } +rest ..> jaxrs + +todolist.restapi ..> todolist.core + todolist.restserver ..> todolist.core todolist.restserver ..> todolist.json todolist.restserver ..> todolist.restapi @@ -55,8 +52,8 @@ component jersey { component grizzly2 { } -restserver ..> jersey -restserver ..> grizzly2 +rest ..> jersey +rest ..> grizzly2 component "springboot/restserver" as springboot.restserver { package todolist.springboot.restserver -- GitLab