Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
Patrick Brady | 10bba35 | 2017-07-19 12:09:28 -0700 | [diff] [blame] | 4 | ONAP : APPC |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 5 | ================================================================================ |
Patrick Brady | 7a261fb | 2017-06-06 22:35:43 -0700 | [diff] [blame] | 6 | Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 7 | ================================================================================ |
Patrick Brady | 10bba35 | 2017-07-19 12:09:28 -0700 | [diff] [blame] | 8 | Copyright (C) 2017 Amdocs |
| 9 | ============================================================================= |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 10 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 11 | you may not use this file except in compliance with the License. |
| 12 | You may obtain a copy of the License at |
| 13 | |
| 14 | http://www.apache.org/licenses/LICENSE-2.0 |
| 15 | |
| 16 | Unless required by applicable law or agreed to in writing, software |
| 17 | distributed under the License is distributed on an "AS IS" BASIS, |
| 18 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 19 | See the License for the specific language governing permissions and |
| 20 | limitations under the License. |
Patrick Brady | 10bba35 | 2017-07-19 12:09:28 -0700 | [diff] [blame] | 21 | |
Patrick Brady | 7a261fb | 2017-06-06 22:35:43 -0700 | [diff] [blame] | 22 | ECOMP is a trademark and service mark of AT&T Intellectual Property. |
Patrick Brady | 10bba35 | 2017-07-19 12:09:28 -0700 | [diff] [blame] | 23 | ============LICENSE_END========================================================= |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 24 | --> |
| 25 | |
| 26 | <!-- |
| 27 | Starter Blueprint Camel Definition appc-common |
| 28 | --> |
| 29 | <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0" |
| 30 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 31 | xsi:schemaLocation="http://www.osgi.org/xmlns/blueprint/v1.0.0 http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd"> |
| 32 | |
Patrick Brady | 7670600 | 2017-09-04 21:37:25 -0700 | [diff] [blame] | 33 | <reference id="dbLibServiceRef" availability="mandatory" activation="eager" interface="org.onap.ccsdk.sli.core.dblib.DbLibService" /> |
Patrick Brady | c7d0075 | 2017-06-01 10:45:37 -0700 | [diff] [blame] | 34 | |
| 35 | <bean id="MetadataServiceImplBean" class="org.openecomp.appc.metadata.impl.MetadataServiceImpl" scope="singleton"> |
| 36 | <property name="dbLibService" ref="dbLibServiceRef" /> |
| 37 | </bean> |
| 38 | |
| 39 | <service id="MetadataService" interface="org.openecomp.appc.metadata.MetadataService" ref="MetadataServiceImplBean"/> |
| 40 | |
| 41 | </blueprint> |