Skip to content

Commit 4e5ac52

Browse files
authored
Merge pull request #97 from auth0/prepare-release
Release 1.5.0
2 parents 424f99c + 14134eb commit 4e5ac52

4 files changed

Lines changed: 18 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## [1.5.0](https://github.com/auth0/auth0-java/tree/1.5.0) (2017-12-07)
4+
[Full Changelog](https://github.com/auth0/auth0-java/compare/1.4.0...1.5.0)
5+
6+
**Added**
7+
- Resource server [\#77](https://github.com/auth0/auth0-java/pull/77) ([mfarsikov](https://github.com/mfarsikov))
8+
39
## [1.4.0](https://github.com/auth0/auth0-java/tree/1.4.0) (2017-11-30)
410
[Full Changelog](https://github.com/auth0/auth0-java/compare/1.3.1...1.4.0)
511

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ Get Auth0 Java via Maven:
1616
<dependency>
1717
<groupId>com.auth0</groupId>
1818
<artifactId>auth0</artifactId>
19-
<version>1.4.0</version>
19+
<version>1.5.0</version>
2020
</dependency>
2121
```
2222

2323
or Gradle:
2424

2525
```gradle
26-
compile 'com.auth0:auth0:1.4.0'
26+
compile 'com.auth0:auth0:1.5.0'
2727
```
2828

2929

@@ -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)