Add collaboration feature
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / onboarding-rest-war / src / main / webapp / WEB-INF / beans-services.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <beans xmlns="http://www.springframework.org/schema/beans"
3        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4        xmlns:jaxrs="http://cxf.apache.org/jaxrs"
5        xmlns:context="http://www.springframework.org/schema/context"
6        xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
7        http://cxf.apache.org/jaxrs http://cxf.apache.org/schemas/jaxrs.xsd
8        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
9
10
11     <import resource="classpath:META-INF/cxf/cxf.xml"/>
12     <import resource="classpath:META-INF/cxf/cxf-servlet.xml"/>
13
14     <!-- CXF -->
15     <context:component-scan base-package="org.openecomp.sdcrests"/>
16     <!-- Needed for JSR-303 validations. May be removed when moving to JAX-RS 2.0 -->
17     <bean id="validator" class="org.springframework.validation.beanvalidation.LocalValidatorFactoryBean"/>
18
19     <!-- Needed for JSR-303 validations. May be removed when moving to JAX-RS 2.0 -->
20     <bean class="org.springframework.validation.beanvalidation.MethodValidationPostProcessor"/>
21
22     <bean id="jacksonObjectMapper" class="org.codehaus.jackson.map.ObjectMapper">
23         <property name="serializationInclusion" value="NON_NULL"/>
24     </bean>
25
26     <bean id="jsonProvider" class="org.codehaus.jackson.jaxrs.JacksonJsonProvider">
27         <property name="mapper" ref="jacksonObjectMapper"/>
28     </bean>
29
30     <bean id="outEmptyResponseInterceptor" class="org.openecomp.server.interceptors.EmptyOutputOutInterceptor"/>
31
32     <!-- ASDC -->
33     <bean id="uploadValidationManager" class="org.openecomp.sdc.validation.impl.UploadValidationManagerImpl"/>
34     <bean id="actionManager" class="org.openecomp.sdc.action.impl.ActionManagerImpl"/>
35     <bean id="applicationConfigManager" class="org.openecomp.sdc.applicationconfig.impl.ApplicationConfigManagerImpl"/>
36
37     <!-- aspect beans -->
38     <bean id = "healthCheck" class="org.openecomp.sdcrests.health.rest.services.HealthCheckImpl"/>
39     <bean id = "itemPermissions" class="org.openecomp.sdcrests.itempermissions.rest.services.ItemPermissionsImpl"/>
40     <bean id = "notifications" class="org.openecomp.sdcrests.notifications.rest.services.impl.NotificationsImpl"/>
41     <!-- RESTful Services -->
42     <jaxrs:server id="restContainer" address="/">
43
44         <jaxrs:serviceBeans>
45             <ref bean="versions"/>
46             <ref bean="conflicts"/>
47             <ref bean="vendorLicenseModels"/>
48             <ref bean="licenseAgreements"/>
49             <ref bean="featureGroups"/>
50             <ref bean="entitlementPools"/>
51             <ref bean="entitlementPoolLimits"/>
52             <ref bean="licenseKeyGroups"/>
53             <ref bean="licenseKeyGroupLimits"/>
54             <ref bean="vendorSoftwareProducts"/>
55             <ref bean="networks"/>
56             <ref bean="components"/>
57             <ref bean="nics"/>
58             <ref bean="computes"/>
59             <ref bean="processes"/>
60             <ref bean="componentProcesses"/>
61             <ref bean="validation"/>
62             <ref bean="actions"/>
63             <ref bean="applicationConfiguration"/>
64             <ref bean="componentMonitoringUploads"/>
65             <ref bean="deploymentFlavors"/>
66                 <ref bean="images"/>
67             <ref bean="orchestrationTemplateCandidate"/>
68             <ref bean="componentDependencies"/>
69             <ref bean="healthCheck"/>
70             <ref bean="itemPermissions"/>
71             <ref bean="notifications"/>
72         </jaxrs:serviceBeans>
73
74         <jaxrs:providers>
75             <ref bean="jsonProvider"/>
76             <bean class="org.openecomp.sdc.action.errors.ActionExceptionMapper"/>
77             <bean class="org.openecomp.sdcrests.errors.DefaultExceptionMapper"/>
78         </jaxrs:providers>
79
80         <jaxrs:outInterceptors>
81             <ref bean="outEmptyResponseInterceptor"/>
82         </jaxrs:outInterceptors>
83     </jaxrs:server>
84
85 </beans>