Skip to content

Commit 15950aa

Browse files
authored
Merge pull request #128 from auth0/some-pagination
Deprecate ClientsEntity#list() method
2 parents 19121df + a519c94 commit 15950aa

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/main/java/com/auth0/client/mgmt/ClientsEntity.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@ public class ClientsEntity extends BaseManagementEntity {
3030
* See https://auth0.com/docs/api/management/v2#!/Clients/get_clients
3131
*
3232
* @return a Request to execute.
33+
* @deprecated Calling this method will soon stop returning the complete list of clients and instead, limit to the first page of results.
34+
* Please use {@link #list(ClientFilter)} instead as it provides pagination support.
3335
*/
36+
@Deprecated
3437
public Request<List<Client>> list() {
3538
String url = baseUrl
3639
.newBuilder()

0 commit comments

Comments
 (0)