aboutsummaryrefslogtreecommitdiffstats
path: root/sliapi/springboot/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'sliapi/springboot/README.md')
-rw-r--r--sliapi/springboot/README.md33
1 files changed, 0 insertions, 33 deletions
diff --git a/sliapi/springboot/README.md b/sliapi/springboot/README.md
deleted file mode 100644
index 38be1c2f..00000000
--- a/sliapi/springboot/README.md
+++ /dev/null
@@ -1,33 +0,0 @@
-This directory contains a demo springboot implementation of the SLI-API healthcheck method.
-
-To start this server with out AAF authentication, run:
-mvn -DserviceLogicDirectory=src/main/resources spring-boot:run
-
-To start this server with AAF authentication, run:
-mvn spring-boot:run -Dspring-boot.run.jvmArguments="-Dcadi_prop_files=/opt/onap/sdnc/data/properties/org.onap.sdnc.props -DserviceLogicDirectory=src/main/resources"
-
-
-This will start a servlet on port 8080. To test to that servlet, post a blank
-message to that port:
-
-curl http://127.0.0.1:8080/restconf/operations/SLI-API:healthcheck -X POST -H "Content-Type: application/json"
-
-Requests can also be sent to `http://localhost:8080/executeGraph`
-
-The graph details need to match a graph which has been loaded and activated
-
-An example request
-```
-{
- "graphDetails": {
- "module": "prov",
- "rpc": "test",
- "mode": "sync"
- },
- "input": {
- "name": "Hello World",
- "test": "one",
- "mixed": "cAsE"
- }
-}
-```