diff options
author | yanhuanwang <martin.c.yan@est.tech> | 2019-02-01 15:23:35 +0100 |
---|---|---|
committer | yanhuanwang <martin.yan.seu@gmail.com> | 2019-02-13 09:35:09 +0100 |
commit | 6c40bae51affbcb858ebf908bd07345a907fd9be (patch) | |
tree | 092d33a3ffbaba77351444dc47a95a061d9e2a45 /README.md | |
parent | 70cf309e54b2b24b83b5bc08e424f4614648b575 (diff) |
Add Readme.md
Format code
Change-Id: Iba56718868043d3b19c71892f363fbb838f4988a
Signed-off-by: Chengkai Yan <martin.c.yan@est.tech>
Issue-ID: DCAEGEN2-1039
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 00000000..82f58edc --- /dev/null +++ b/README.md @@ -0,0 +1,41 @@ +# DFC (DataFile Collector) + +Physical Network Function Registration Handler is responsible for registration of PNF (Physical Network Function) to +ONAP (Open Network Automation Platform) in plug and play manner. + +## Introduction + +DFC is delivered as one **Docker container** which hosts application server and can be started by `docker-compose`. + +## Compiling DFC + +Whole project (top level of DFC directory) and each module (sub module directory) can be compiled using +`mvn clean install` command. + +## Main API Endpoints + +Running with dev-mode of DFC + +- **Heartbeat**: http://<container_address>:8100/**heartbeat** or https://<container_address>:8443/**heartbeat** + +- **Start DFC**: http://<container_address>:8100/**start** or https://<container_address>:8433/**start** + +- **Stop DFC**: http://<container_address>:8100/**stopDatafile** or https://<container_address>:8433/**stopDatafile** + +## Maven GroupId: + +org.onap.dcaegen2.collectors + +### Maven Parent ArtifactId: + +dcae-services + +### Maven Children Artifacts: +1. datafile-app-server: Datafile Collector (DFC) server +2. datafile-commons: Common code for whole dfc modules +3. datafile-dmaap-client: http client used to connect to dmaap message router/data router + +## License + +Copyright (C) 2018-2019 NOKIA Intellectual Property, 2018-2019 Nordix Foundation. All rights reserved. +[License](http://www.apache.org/licenses/LICENSE-2.0) |