Saltstack port not mandatory
[ccsdk/sli/adaptors.git] / saltstack-adapter / saltstack-adapter-provider / src / main / resources / org / opendaylight / blueprint / saltstack-adapter-blueprint.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP : CCSDK
5   ================================================================================
6   Copyright (C) 2017 - 2018 Samsung Electronics. All rights
7                           reserved.
8   ================================================================================
9   Licensed under the Apache License, Version 2.0 (the "License");
10   you may not use this file except in compliance with the License.
11   You may obtain a copy of the License at
12
13        http://www.apache.org/licenses/LICENSE-2.0
14
15   Unless required by applicable law or agreed to in writing, software
16   distributed under the License is distributed on an "AS IS" BASIS,
17   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18   See the License for the specific language governing permissions and
19   limitations under the License.
20   ============LICENSE_END=========================================================
21   -->
22
23 <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
24            xmlns:odl="http://opendaylight.org/xmlns/blueprint/v1.0.0"
25            odl:use-default-for-reference-types="true">
26
27     <bean id="propProvider" class="org.onap.ccsdk.sli.adaptors.saltstack.impl.SaltstackAdapterPropertiesProviderImpl" />
28
29     <bean id="saltstackAdapterInstance" class="org.onap.ccsdk.sli.adaptors.saltstack.impl.SaltstackAdapterImpl">
30         <argument ref="propProvider"/>
31     </bean>
32
33     <service ref="saltstackAdapterInstance">
34         <interfaces>
35             <value>org.onap.ccsdk.sli.adaptors.saltstack.SaltstackAdapter</value>
36         </interfaces>
37     </service>
38
39 </blueprint>