Merge branch 'Feature/Add_Rest_Api_with_Java_client' of https://github.com/bsinno/hawkbit into Feature/Add_Rest_Api_with_Java_client

This commit is contained in:
SirWayne
2016-05-03 14:07:41 +02:00
13 changed files with 147 additions and 28 deletions

View File

@@ -4,9 +4,9 @@ Example projects that show how _hawkBit_ can be used to create, run or access an
- `hawkbit-custom-theme-example` : Example for a customized theme for Management UI.
- `hawkbit-device-simulator` : Simulates device software updates, leveraging the hawkBit device integration options.
- `hawkbit-example-app` : Allows you to run a Spring Boot and hawkBit based update server. Includes all _hawkBit_ interfaces, i.e. DDI, DMF, Mgmt-API, Mgmt-UI.
- `hawkbit-example-ddi-client` : Example _hawkBit_ DDI client based on the _hawkBit_ DDI API.
- `hawkbit-example-app` : Allows you to run the Spring Boot hawkBit app. Includes all _hawkBit_ interfaces, i.e. DDI, DMF, Mgmt-API, Mgmt-UI.
- `hawkbit-example-ddi-client` : Example _hawkBit_ DDI client based on the _hawkBit_ DDI API. Includes simulation of target.
- `hawkbit-example-feign-core-client` : Core resources for the examples.
- `hawkbit-example-mgmt-client` : Example client for the _hawkBit_ Management API
- `hawkbit-example-mgmt-spring-client` : Example client for the _hawkBit_ Management API based on Spring boot.
- `hawkbit-example-mgmt-spring-client` : Example client for the _hawkBit_ Management API based on Spring Boot.

View File

@@ -1,6 +1,6 @@
# Eclipse.IoT hawkBit - Example DDI Client
The hawkBit Example DDI Client is an implementation of a simulated device/controller that communicates with the hawkBit server via the DDI API.
The hawkBit Example DDI Client is an implementation of a simulated device/target that communicates with the hawkBit server via the DDI API.
# Compile, Run and Getting Started
@@ -25,6 +25,5 @@ executorService.execute(ddiExampleClient);
#### Getting started with hawkBit Example DDI Client
After the hawkBit Example DDI Client has started it will poll once against the given hawkBit server and form then on depending on your polling configuration.
After the hawkBit Example DDI Client has polled successful your will see a target in the deployment view regarding the given controller id of your hawkBit Example DDI Client.
After the hawkBit Example DDI Client has started it will poll once against the given hawkBit server and form then depending on your polling configuration. After the hawkBit Example DDI Client has polled successful you will see a target in the deployment view regarding the given controller id of your hawkBit Example DDI Client. You can know assign a distributionSet to the target and let the hawkBit Example DDI Client simulated an update.

View File

@@ -0,0 +1,13 @@
# Eclipse.IoT hawkBit - Example Feign Core Client
This modules contains core resources that are needed by the hawkBit Example DDI Client and the hawkBit Example Management Spring Client.
# Compile
#### Build hawkbit-example-feign-core-client
```
$ cd hawkbit/examples/hawkbit-example-feign-core-client
$ mvn clean install
```

View File

@@ -0,0 +1,15 @@
# Eclipse.IoT hawkBit - Example Management Client
This modules contains an example feign client implementation based on the Mgmt API.
Powered by [Feign](https://github.com/Netflix/feign).
# Compile
#### Build hawkbit-example-mgmt-client
```
$ cd hawkbit/examples/hawkbit-example-mgmt-client
$ mvn clean install
```

View File

@@ -1,6 +1,6 @@
# hawkBit Management API example client
# Eclipse.IoT hawkBit - Management API Example Client
Example client that shows how to efficiently use the hawkBit management API.
Example Spring Boot client that shows how to efficiently use the hawkBit Example Management Client and the hawkBit Management API.
Powered by [Feign](https://github.com/Netflix/feign).