Author: ilgrosso
Date: Tue Sep 23 14:32:02 2014
New Revision: 1627038
URL: http://svn.apache.org/r1627038
Log:
[SYNCOPE-551] Listing the first 1000 (say a high number) roles in the role tree
Modified:
syncope/branches/1_2_X/console/src/main/java/org/apache/syncope/console/rest/RoleRestClient.java
Modified:
syncope/branches/1_2_X/console/src/main/java/org/apache/syncope/console/rest/RoleRestClient.java
URL:
http://svn.apache.org/viewvc/syncope/branches/1_2_X/console/src/main/java/org/apache/syncope/console/rest/RoleRestClient.java?rev=1627038&r1=1627037&r2=1627038&view=diff
==============================================================================
---
syncope/branches/1_2_X/console/src/main/java/org/apache/syncope/console/rest/RoleRestClient.java
(original)
+++
syncope/branches/1_2_X/console/src/main/java/org/apache/syncope/console/rest/RoleRestClient.java
Tue Sep 23 14:32:02 2014
@@ -53,7 +53,7 @@ public class RoleRestClient extends Abst
}
public List<RoleTO> list() {
- return getService(RoleService.class).list().getResult();
+ return getService(RoleService.class).list(1, 1000).getResult();
}
@Override