This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
Hi, I created a login module with JBoss. It create the callerPrincipal: SimpleGroup roles = new SimpleGroup("Roles"); SimpleGroup callerPrincipal = new SimpleGroup("CallerPrincipal"); SimpleGroup cpLogin = new SimpleGroup("login"); cpLogin.addMember(new SimplePrincipal("my login name")); SimpleGroup cpId = new SimpleGroup("id"); cpId.addMember(new SimplePrincipal("my id")); callerPrincipal.addMember(cpLogin); callerPrincipal.addMember(cpId); roles.addMember(new SimplePrincipal("manager")); log.debug(callerPrincipal.toString()); Group[] roleSets = {roles, callerPrincipal};
the log file gives me: CallerPrincipal(members:login(members:my login name),id(members:my id))