aboutsummaryrefslogtreecommitdiffstats
path: root/adapters/mso-catalog-db-adapter/src/main/resources/static/readme/index.html
blob: b6ff8f3991218886831852925e3525652215d328 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!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>