Containerization feature of SO
[so.git] / adapters / mso-catalog-db-adapter / src / main / resources / static / readme / index.html
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4         <link rel="stylesheet" type="text/css" href="./readme.css" >
5         <title>Read Me</title>
6         <script src="//code.jquery.com/jquery.min.js"></script>
7 </head>
8 <body>
9         <div id="page-wrapper">
10                 <div id="page-setup"></div>
11                 <div id="right-col">
12                         <ul>
13                                 <li class="title">
14                                         <p>Introduction</p>
15                                 </li>
16                                 <li class="info-title">
17                                         <p>SO API Handler</p>
18                                 </li>
19                                 <li class="info">
20                                         <p>SO API Handler utilizes RESTful interfaces to interact with consumer applications. The SO interface
21                                         is used to orchestrate VNFs, allow for manual task completion, and send vnf replace requests. 
22                                         It contains both the SOServiceInstantiation API and SOManualTasks API. </p>
23                                 </li>
24                                 <li class="info-title">
25                                         <p>SOServiceInstantiation API</p>
26                                 </li>
27                                 <li class="info">
28                                         <p>The SOServiceInstantiation API handles service instance requests, and supports both macro and aLaCarte 
29                                         orchestrations. Change management operations, activation and deactivation of service instances, and new 
30                                         requests for configuration resources are handled by this API. This API is currently 
31                                         set for version 6 ("v6") while also supporting versions 4 and 5 ("v4", "v5") minus additional "v6" features.</p>
32                                 </li>
33                                 <li class="info-title">
34                                         <p>SOManualTasks API</p>
35                                 </li>
36                                 <li class="info">
37                                         <p>The SOManualTasks API handles queries about open manual tasks. This API also accepts POST requests
38                                         containing information about how SO should proceed with handling the open tasks, and resolving the 
39                                         errors. SOManualTasks API currently supports version 1 ("v1"). </p>
40                                 </li>
41                         </ul>
42                 </div>
43         </div>
44         <script>
45                 $.get("page.html", function(data){
46                         $("#page-setup").replaceWith(data);
47                 });
48                 $(window).load(function() {
49                         $("body").fadeIn(.5);
50                 });
51         </script>
52 </body>
53 </html>