diff options
Diffstat (limited to 'adapters/mso-sdnc-adapter/src/main/resources/static/readme/index.html')
-rw-r--r-- | adapters/mso-sdnc-adapter/src/main/resources/static/readme/index.html | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/adapters/mso-sdnc-adapter/src/main/resources/static/readme/index.html b/adapters/mso-sdnc-adapter/src/main/resources/static/readme/index.html deleted file mode 100644 index b6ff8f3991..0000000000 --- a/adapters/mso-sdnc-adapter/src/main/resources/static/readme/index.html +++ /dev/null @@ -1,53 +0,0 @@ -<!DOCTYPE html> -<html lang="en"> -<head> - <link rel="stylesheet" type="text/css" href="./readme.css" > - <title>Read Me</title> - <script src="//code.jquery.com/jquery.min.js"></script> -</head> -<body> - <div id="page-wrapper"> - <div id="page-setup"></div> - <div id="right-col"> - <ul> - <li class="title"> - <p>Introduction</p> - </li> - <li class="info-title"> - <p>SO API Handler</p> - </li> - <li class="info"> - <p>SO API Handler utilizes RESTful interfaces to interact with consumer applications. The SO interface - is used to orchestrate VNFs, allow for manual task completion, and send vnf replace requests. - It contains both the SOServiceInstantiation API and SOManualTasks API. </p> - </li> - <li class="info-title"> - <p>SOServiceInstantiation API</p> - </li> - <li class="info"> - <p>The SOServiceInstantiation API handles service instance requests, and supports both macro and aLaCarte - orchestrations. Change management operations, activation and deactivation of service instances, and new - requests for configuration resources are handled by this API. This API is currently - set for version 6 ("v6") while also supporting versions 4 and 5 ("v4", "v5") minus additional "v6" features.</p> - </li> - <li class="info-title"> - <p>SOManualTasks API</p> - </li> - <li class="info"> - <p>The SOManualTasks API handles queries about open manual tasks. This API also accepts POST requests - containing information about how SO should proceed with handling the open tasks, and resolving the - errors. SOManualTasks API currently supports version 1 ("v1"). </p> - </li> - </ul> - </div> - </div> - <script> - $.get("page.html", function(data){ - $("#page-setup").replaceWith(data); - }); - $(window).load(function() { - $("body").fadeIn(.5); - }); - </script> -</body> -</html> |