Skip to content

Commit

Permalink
deprecate ClientsEntity#list() method
Browse files Browse the repository at this point in the history
  • Loading branch information
lbalmaceda committed Jun 11, 2018
1 parent 19121df commit a519c94
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 a519c94

Please sign in to comment.