Skip to content

Commit

Permalink
[RELEASE] 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Olivier DAIRAY committed Oct 24, 2017
1 parent 649d82a commit 97cc81d
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Tefps Clients

## Available clients

- Java7 TefpsTvClient

### Java7 TefpsTvClient - Usage

```
import fr.polyconseil.smartcity.tefpsclient.tv.TefpsTvClient;
import fr.polyconseil.smartcity.tefpsclients.auth.OAuth2HttpClient;
import fr.polyconseil.smartcity.tefpsclient.dto.tv.ParkingRightDTO;
TefpsTvClient client = new TefpsTvClient(new OAuth2HttpClient(
"http://tefps-directory-host:port",
"clientId",
"clientSecret"),
"http://tefps-tv-host:port"
);
ParkingRightDTO parkingRight = client.fetchTv("cityId", "tvId");
```
2 changes: 1 addition & 1 deletion java7/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>fr.polyconseil.smartcity</groupId>
<artifactId>tefps-clients</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0</version>
<packaging>jar</packaging>

<name>TeFPS clients</name>
Expand Down

0 comments on commit 97cc81d

Please sign in to comment.