I have may own realm extending AuthorizingRealm. I'm trying to pass AllowAllCredentialsMatcher using super(new AllowAllCredentialsMatcher()) in my realm constructor That means calling AuthorizingRealm(CredentialsMatcher matcher) then AuthorizingRealm(CacheManager cacheManager, CredentialsMatcher matcher) and then AuthenticatingRealm() that creates a SimpleCredentialsMatcher(). Shouldn't AuthorizingRealm(CacheManager cacheManager, CredentialsMatcher matcher) call AuthenticatingRealm(CredentialsMatcher matcher) instead with my CredentialsMatcher?
Thanks -- Filipe Sousa
