From 72c4fbaceb680b3b34e177ccca11efe18de599f5 Mon Sep 17 00:00:00 2001 From: Lusheng Ji Date: Tue, 10 Oct 2017 18:12:22 +0000 Subject: Draft docs Issue-Id: DCAEGEN2-109 Change-Id: I85513ed5b34c0f60b8b0924b2016bbb3224beb9c Signed-off-by: Lusheng Ji --- docs/sections/delivery.rst | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 docs/sections/delivery.rst (limited to 'docs/sections/delivery.rst') diff --git a/docs/sections/delivery.rst b/docs/sections/delivery.rst new file mode 100644 index 00000000..f3f083a7 --- /dev/null +++ b/docs/sections/delivery.rst @@ -0,0 +1,44 @@ +.. This work is licensed under a Creative Commons Attribution 4.0 International License. +.. http://creativecommons.org/licenses/by/4.0 + +Delivery +======== + +.. note:: + * This section is used to describe a software component packaging. + For a run-time component this might be executable images, containers, etc. + For an SDK this might be libraries. + + * This section is typically provided for a platform-component and sdk; + and referenced in developer and user guides + + * This note must be removed after content has been added. + +Example use of a block diagram. + +.. blockdiag:: + + + blockdiag layers { + orientation = portrait + a -> m; + b -> n; + c -> x; + m -> y; + m -> z; + group l1 { + color = blue; + x; y; z; + } + group l2 { + color = yellow; + m; n; + } + group l3 { + color = orange; + a; b; c; + } + + } + + -- cgit 1.2.3-korg eijing ARCHIVED- 2022-02-15 at the request of the projectGrokmirror user
aboutsummaryrefslogtreecommitdiffstats
blob: cd0e4123b33b6736cf01889f810d3fdc693b0bd2 (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
<?xml version="1.0" encoding="UTF-8"?>
<!--
  ============LICENSE_START=======================================================
  ONAP : APPC
  ================================================================================
  Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
  ================================================================================
  Copyright (C) 2017 Amdocs
  =============================================================================
  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at
  
       http://www.apache.org/licenses/LICENSE-2.0
  
  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
  
  ECOMP is a trademark and service mark of AT&T Intellectual Property.
  ============LICENSE_END=========================================================
  -->

<!-- vi: set et smarttab sw=4 tabstop=4: -->
<!-- Copyright ? 2016 AT&T and others. All rights reserved. -->
<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
	xmlns:odl="http://opendaylight.org/xmlns/blueprint/v1.0.0"
	odl:use-default-for-reference-types="true">

	<reference id="dataBroker"
		interface="org.opendaylight.controller.md.sal.binding.api.DataBroker"
		odl:type="default" />

	<reference id="rpcRegistry"
		interface="org.opendaylight.controller.sal.binding.api.RpcProviderRegistry" />

	<bean id="provider" class="org.onap.appc.design.services.DesignServiceProvider"
		init-method="init" destroy-method="close">
		<argument ref="dataBroker" />
		<argument ref="rpcRegistry" />
	</bean>
</blueprint>