Hello, everyone.. I need to implement authentication module in my webapp and I want to use JSecyrity, but I can't figure out how to connect the authc process with my JPA module I use for accessing user details (i.e. username, password, roles, etc..). Suppose I have to set AuthenticatingRealm to my SecurityManager and implemenent all these methods, inherited from Authorizer interface, but since I'll do authr in my Wicket app, I suppose i just need to implement the 'doGetAuthenticationInfo(AuthenticationToken token)' method with the means of the JPA implementation I have. Am I right? :)
Thank you in advance for your time! :)
