From 97632c131744e5648eb838b38d8d971f66c328ae Mon Sep 17 00:00:00 2001 From: GedMarc Date: Fri, 10 May 2024 07:59:02 +0200 Subject: [PATCH] Add Serial Port as a valid Call Scope Source --- Database/postgresql/src/moditect/module-info.java | 2 ++ .../guicedservlets/websockets/options/CallScopeSource.java | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Database/postgresql/src/moditect/module-info.java b/Database/postgresql/src/moditect/module-info.java index 5f6df6d0..7836edf3 100644 --- a/Database/postgresql/src/moditect/module-info.java +++ b/Database/postgresql/src/moditect/module-info.java @@ -1,6 +1,8 @@ module org.postgresql.jdbc { exports org.postgresql; + exports org.postgresql.xa; + exports org.postgresql.ds.common; exports org.postgresql.util to org.hibernate.orm.core; requires java.sql; diff --git a/guice-inject-client/src/main/java/com/guicedee/guicedservlets/websockets/options/CallScopeSource.java b/guice-inject-client/src/main/java/com/guicedee/guicedservlets/websockets/options/CallScopeSource.java index f275bafe..ebba4b50 100644 --- a/guice-inject-client/src/main/java/com/guicedee/guicedservlets/websockets/options/CallScopeSource.java +++ b/guice-inject-client/src/main/java/com/guicedee/guicedservlets/websockets/options/CallScopeSource.java @@ -5,5 +5,6 @@ public enum CallScopeSource Http, WebSocket, RabbitMQ, - Timer + Timer, + SerialPort }