202203204205206207208209210211212
// store authenticated-Flag in webSocketData // so the command can access it webSocketData.setSessionValid(isAuthenticated()); abstractCommand.processMessage(webSocketData); // commit transaction tx.success(); }
221222223224225226227228229230231
// commit transaction tx.success(); } // process message without transaction context! abstractCommand.processMessage(webSocketData); } } catch (FrameworkException | InstantiationException | IllegalAccessException t) {