Hi folks,
this might be my personal sensation but the api seems to be very verbose.
There are e.g. a lot of methods there, taking a session id as the first
parameter.
I found those methods "all over the place" and it's very obvious
what they do, they all just delegate the real session.
What's the advantage of having pure delegate methods everywhere?
To be specific, what makes
SecurityManager.setCacheManager(manager);
better than
SecurityManager.getSessionManager().setCacheManager(manager);
Thanks in advance,
Willi