8f4a2db73ed85fb3908c89bb623d2c44e8464042
[sdc.git] /
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     <!--aop:config>
40         < aspect pointcuts>
41         <aop:pointcut id="loggingDebugPointcut" expression="execution(* org.openecomp.sdc.*.*.*(..))"/>
42
43         <advices>
44         <aop:aspect id="logDebugAspect" ref="debugAspect">
45             <aop:before pointcut-ref="loggingDebugPointcut" method="debugEnterMethod"/>
46             <aop:after-returning pointcut-ref="loggingDebugPointcut" method="debugExitMethod"/>
47         </aop:aspect>
48     </aop:config-->
49
50
51
52
53     <!-- RESTful Services -->
54     <jaxrs:server id="restContainer" address="/">
55
56         <jaxrs:serviceBeans>
57             <ref bean="vendorLicenseModels"/>
58             <ref bean="licenseAgreements"/>
59             <ref bean="featureGroups"/>
60             <ref bean="entitlementPools"/>
61             <ref bean="entitlementPoolLimits"/>
62             <ref bean="licenseKeyGroups"/>
63             <ref bean="licenseKeyGroupLimits"/>
64             <ref bean="vendorSoftwareProducts"/>
65             <ref bean="networks"/>
66             <ref bean="components"/>
67             <ref bean="nics"/>
68             <ref bean="computes"/>
69             <ref bean="processes"/>
70             <ref bean="componentProcesses"/>
71             <ref bean="validation"/>
72             <ref bean="actions"/>
73             <ref bean="applicationConfiguration"/>
74             <ref bean="componentMonitoringUploads"/>
75             <ref bean="deploymentFlavors"/>
76                 <ref bean="images"/>
77             <ref bean="orchestrationTemplateCandidate"/>
78             <ref bean="componentDependencyModel"/>
79             <ref bean="activityLog"/>
80             <ref bean="healthCheck"/>
81         </jaxrs:serviceBeans>
82
83         <jaxrs:providers>
84             <ref bean="jsonProvider"/>
85             <bean class="org.openecomp.sdc.action.errors.ActionExceptionMapper"/>
86             <bean class="org.openecomp.sdcrests.errors.DefaultExceptionMapper"/>
87         </jaxrs:providers>
88
89         <jaxrs:outInterceptors>
90             <ref bean="outEmptyResponseInterceptor"/>
91         </jaxrs:outInterceptors>
92     </jaxrs:server>
93
94 </beans>