Skip to content

Commit

Permalink
Merge pull request #128 from auth0/some-pagination
Browse files Browse the repository at this point in the history
Deprecate ClientsEntity#list() method
  • Loading branch information
lbalmaceda authored Jun 11, 2018
2 parents 19121df + a519c94 commit 15950aa
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/java/com/auth0/client/mgmt/ClientsEntity.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ public class ClientsEntity extends BaseManagementEntity {
* See https://auth0.com/docs/api/management/v2#!/Clients/get_clients
*
* @return a Request to execute.
* @deprecated Calling this method will soon stop returning the complete list of clients and instead, limit to the first page of results.
* Please use {@link #list(ClientFilter)} instead as it provides pagination support.
*/
@Deprecated
public Request<List<Client>> list() {
String url = baseUrl
.newBuilder()
Expand Down

0 comments on commit 15950aa

Please sign in to comment.