Re: When is LoginModulePlugin.getAuthentication called?

2013-05-30 Thread Antonio Sanso
On May 29, 2013, at 8:01 PM, connuser1 connuser1 wrote: Thanks Antonio! That's right. If my getPrinicpal returns a principal, getAuthentication is invoked and succeeds. I assume that when my getPrinicpal wasn't returning anything, the principal from jcr was getting set if available. correct.

Re: When is LoginModulePlugin.getAuthentication called?

2013-05-29 Thread connuser1 connuser1
Thanks Antonio! That's right. If my getPrinicpal returns a principal, getAuthentication is invoked and succeeds. I assume that when my getPrinicpal wasn't returning anything, the principal from jcr was getting set if available. On Tue, May 28, 2013 at 8:10 PM, Antonio Sanso asa...@adobe.com

Re: When is LoginModulePlugin.getAuthentication called?

2013-05-28 Thread Antonio Sanso
Hi Connuser, the reason why your getAuthentication is never called, I assume, is that the getPrincipal method in your custom LoginModule returns null Regards Antonio On May 27, 2013, at 9:07 AM, connuser1 connuser1 wrote: Hi I have written an implementation of LoginModulePlugin. The