From 4560b77ff43881a801a823cb4a7d406174dee25a Mon Sep 17 00:00:00 2001 From: Robert von Burg Date: Thu, 5 Oct 2023 14:23:59 +0200 Subject: [PATCH] [Major] Refactored SessionHandler by moving to module agent --- example/config/StrolchConfiguration.xml | 4 ++-- .../resources/test-runtime/config/StrolchConfiguration.xml | 4 ++-- .../java/li/strolch/plc/gw/server/PlcGwServerHandler.java | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/example/config/StrolchConfiguration.xml b/example/config/StrolchConfiguration.xml index a1997fc..4283c78 100644 --- a/example/config/StrolchConfiguration.xml +++ b/example/config/StrolchConfiguration.xml @@ -92,8 +92,8 @@ SessionHandler - li.strolch.rest.StrolchSessionHandler - li.strolch.rest.DefaultStrolchSessionHandler + li.strolch.runtime.sessions.StrolchSessionHandler + li.strolch.runtime.sessions.DefaultStrolchSessionHandler PrivilegeHandler 30 diff --git a/plc-core/src/test/resources/test-runtime/config/StrolchConfiguration.xml b/plc-core/src/test/resources/test-runtime/config/StrolchConfiguration.xml index 825865f..ace8520 100644 --- a/plc-core/src/test/resources/test-runtime/config/StrolchConfiguration.xml +++ b/plc-core/src/test/resources/test-runtime/config/StrolchConfiguration.xml @@ -52,8 +52,8 @@ SessionHandler - li.strolch.rest.StrolchSessionHandler - li.strolch.rest.DefaultStrolchSessionHandler + li.strolch.runtime.sessions.StrolchSessionHandler + li.strolch.runtime.sessions.DefaultStrolchSessionHandler PrivilegeHandler 30 diff --git a/plc-gw-server/src/main/java/li/strolch/plc/gw/server/PlcGwServerHandler.java b/plc-gw-server/src/main/java/li/strolch/plc/gw/server/PlcGwServerHandler.java index 522da36..830e21b 100644 --- a/plc-gw-server/src/main/java/li/strolch/plc/gw/server/PlcGwServerHandler.java +++ b/plc-gw-server/src/main/java/li/strolch/plc/gw/server/PlcGwServerHandler.java @@ -34,7 +34,7 @@ import li.strolch.privilege.base.PrivilegeException; import li.strolch.privilege.model.Certificate; import li.strolch.privilege.model.Usage; import li.strolch.privilege.model.UserRep; -import li.strolch.rest.StrolchSessionHandler; +import li.strolch.runtime.sessions.StrolchSessionHandler; import li.strolch.runtime.configuration.ComponentConfiguration; import li.strolch.runtime.privilege.PrivilegedRunnable; import li.strolch.runtime.privilege.PrivilegedRunnableWithResult;