Christian Schudt
Christian Schudt
Following happened to me: 1. Set a custom LockoutProvider class which is located in a plugin 2. During authentication, the LockOutManager.getInstance() was called for the first time and tried to...
Using `mvn clean install` on the latest 0.14.0 snapshot version, I got a lot of test failures: ``` [ERROR] Tests run: 2, Failures: 0, Errors: 2, Skipped: 0, Time elapsed:...
I was reading through https://spotbugs.github.io/spotbugs-maven-plugin/check-mojo.html and it lacks a lot of documentation. Most or all properties have `(no description)`. As a developer I want to know what all these properties...
Neither of the following two lambda expression work, when registering a PongMessage handler. ``` session.addMessageHandler((MessageHandler.Whole) message -> { }); ``` ``` session.addMessageHandler(PongMessage.class, message -> { }); ``` The reason is,...
When a client initiates a secure session to a "wss" WebSocket server endpoint, the session#isSecure() method always returns false, although it's in fact secure. The server side counterpart is working...