//buildNormalContext
Criteria criteria  = new Criteria();
GroupSet groups = JetspeedSecurity.getGroups(criteria);
context.put("groups", groups);
Criteria criteria2 = new Criteria();
User [] users   = JetspeedSecurity.getUsers (criteria2);
context.put("users", users);
...
//---------------

using this should be the two vars ($users and $groups) in the form , but only $users 
has something in it, the other is empty.
I've created two different criterias because with the same one the result would be 
$users=$groups (in that case the list of the groups, not the users).

Reply via email to