Skip to content

Commit 14134eb

Browse files
committed
add missing javadoc lines
1 parent d6ea6ba commit 14134eb

3 files changed

Lines changed: 10 additions & 1 deletion

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,7 @@ The Management API is divided into different entities. Each of them have the lis
271271
* **Stats:** See [Docs](https://auth0.com/docs/api/management/v2#!/Stats/get_active_users). Access the methods by calling `mgmt.stats()`.
272272
* **Tenants:** See [Docs](https://auth0.com/docs/api/management/v2#!/Tenants/get_settings). Access the methods by calling `mgmt.tenants()`.
273273
* **Tickets:** See [Docs](https://auth0.com/docs/api/management/v2#!/Tickets/post_email_verification). Access the methods by calling `mgmt.tickets()`.
274+
* **Resource Servers:** See [Docs](https://auth0.com/docs/api/management/v2#!/Resource_Servers/get_resource_servers). Access the methods by calling `mgmt.resourceServers()`.
274275

275276

276277
### Users

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public ConnectionsEntity connections() {
114114
public DeviceCredentialsEntity deviceCredentials() {
115115
return new DeviceCredentialsEntity(client, baseUrl, apiToken);
116116
}
117-
117+
118118
/**
119119
* Getter for the Grants entity.
120120
*
@@ -214,6 +214,11 @@ public TicketsEntity tickets() {
214214
return new TicketsEntity(client, baseUrl, apiToken);
215215
}
216216

217+
/**
218+
* Getter for the Resource Servers entity.
219+
*
220+
* @return the Resource Servers entity.
221+
*/
217222
public ResourceServerEntity resourceServers(){
218223
return new ResourceServerEntity(client, baseUrl, apiToken);
219224
}

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
import okhttp3.HttpUrl;
1212
import okhttp3.OkHttpClient;
1313

14+
/**
15+
* Class that provides an implementation of the Resource Server methods of the Management API as defined in https://auth0.com/docs/api/management/v2#!/Resource_Servers
16+
*/
1417
public class ResourceServerEntity {
1518
private OkHttpClient client;
1619
private HttpUrl baseUrl;

0 commit comments

Comments
 (0)