[Yanel-commits] rev 43772 - public/yanel/trunk/src/resources/user-mgmt/src/java/org/wyona/yanel/impl/resources

michi at wyona.com michi at wyona.com
Thu Jul 23 15:21:05 CEST 2009


Author: michi
Date: 2009-07-23 15:21:05 +0200 (Thu, 23 Jul 2009)
New Revision: 43772

Modified:
   public/yanel/trunk/src/resources/user-mgmt/src/java/org/wyona/yanel/impl/resources/ListUsersResource.java
Log:
always load users

Modified: public/yanel/trunk/src/resources/user-mgmt/src/java/org/wyona/yanel/impl/resources/ListUsersResource.java
===================================================================
--- public/yanel/trunk/src/resources/user-mgmt/src/java/org/wyona/yanel/impl/resources/ListUsersResource.java	2009-07-23 12:36:39 UTC (rev 43771)
+++ public/yanel/trunk/src/resources/user-mgmt/src/java/org/wyona/yanel/impl/resources/ListUsersResource.java	2009-07-23 13:21:05 UTC (rev 43772)
@@ -31,7 +31,7 @@
     public User[] getUsers() throws UsecaseException {
         UserManager userManager = getRealm().getIdentityManager().getUserManager();
         try {
-            return userManager.getUsers();
+            return userManager.getUsers(true);
         } catch (AccessManagementException e) {
             throw new UsecaseException(e.toString(), e);
         }



More information about the Yanel-commits mailing list