I see what the problem is although now I not sure why it works at all. I have
this in my AppModule


binder.bind(Realm.class, UserRealm.class);

and 

public static void contributeWebSecurityManager(Configuration<Realm>
configuration, Realm userRealm) {
                configuration.add(userRealm);
}

but the Realm interface does not contain

AuthorizationInfo doGetAuthorizationInfo

When I change to this

 binder.bind(UserRealm.class);

everything works. I looked thru the Shiro docs and there does not seem to be
an interface that contains AuthorizationInfo doGetAuthorizationInfo



--
View this message in context: 
http://tapestry.1045711.n5.nabble.com/tapestry-security-0-4-3-released-tp5574027p5575699.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to