Catalog alignment
[sdc.git] / catalog-be / src / main / resources / application-context.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
3   xmlns:aop="http://www.springframework.org/schema/aop"
4   xsi:schemaLocation="
5         http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
6         http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd
7         http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd">
8
9   <context:annotation-config />
10   <aop:aspectj-autoproxy proxy-target-class="true" />
11
12   <context:component-scan
13           base-package= "org.openecomp.sdc.be.components.health,
14                          org.openecomp.sdc.be.servlets,
15                          org.openecomp.sdc.be.externalapi.servlet,
16                          org.openecomp.sdc.be.components.scheduledtasks,
17                          org.openecomp.sdc.be.facade.operations">
18   </context:component-scan>
19
20   <bean class="org.openecomp.sdc.be.dao.config.DAOSpringConfig"/>
21   <bean class="org.openecomp.sdc.be.config.CatalogModelSpringConfig"/>
22   <bean class="org.openecomp.sdc.be.components.distribution.engine.config.DistributionEngineSpringConfig"/>
23   <bean class="org.openecomp.sdc.config.CatalogBESpringConfig"/>
24
25
26   <aop:config>
27     <aop:aspect id="lockAspect" ref="componentLockAspect">
28       <aop:pointcut id="lockingTransaction" expression="@annotation(org.openecomp.sdc.be.components.impl.lock.LockingTransactional) and args(componentId, componentType,..)"/>
29       <aop:around method="lock" arg-names="proceedingJoinPoint,componentId,componentType" pointcut-ref="lockingTransaction"/>
30     </aop:aspect>
31     <aop:aspect id="roleAuthorizationAspect" ref="roleAuthorizationHandler">
32       <aop:pointcut id="roleAuthorize" expression="@annotation(permissions)"/>
33       <aop:before method="authorizeRole" arg-names="joinPoint, permissions" pointcut-ref="roleAuthorize"/>
34     </aop:aspect>
35   </aop:config>
36
37 </beans>