Add Gizmo (crud-service) in test-config
[aai/test-config.git] / crud-service / dynamic / conf / crud-beans.xml
1 <beans xmlns="http://www.springframework.org/schema/beans"
2     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3     xmlns:util="http://www.springframework.org/schema/util"
4     xsi:schemaLocation="
5     http://www.springframework.org/schema/beans
6     http://www.springframework.org/schema/beans/spring-beans.xsd
7     http://www.springframework.org/schema/util
8     http://www.springframework.org/schema/util/spring-util.xsd
9     ">
10
11     <bean id="champDao" class="org.onap.crud.dao.champ.ChampDao">
12         <constructor-arg name="champUrl" value="https://localhost:9522/services/champ-service/v1/"/>
13         <constructor-arg name="certPassword" value="OBF:1y0q1uvc1uum1uvg1pil1pjl1uuq1uvk1uuu1y10"/>
14     </bean>
15     
16     <bean id="graphDataService" class="org.onap.crud.service.CrudGraphDataService">
17         <constructor-arg name="dao" ref="champDao"/>
18         <constructor-arg name="daoForGet" ref="champDao"/>
19     </bean>
20
21     <bean id="crudRestService" class="org.onap.crud.service.CrudRestService" init-method="startup">
22         <constructor-arg name="graphDataService" ref="graphDataService"/>
23     </bean>
24
25     <bean id="aaiResourceService" class="org.onap.crud.service.AaiResourceService"
26         init-method="startup">
27         <constructor-arg name="graphDataService" ref="graphDataService"/>
28     </bean>
29
30 </beans>