mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@9630 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
54 lines
2.2 KiB
XML
54 lines
2.2 KiB
XML
<?xml version='1.0' encoding='UTF-8'?>
|
|
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
|
|
|
|
<beans>
|
|
|
|
<bean id="TaggingService" class="org.springframework.aop.framework.ProxyFactoryBean">
|
|
<property name="proxyInterfaces">
|
|
<value>org.alfresco.service.cmr.tagging.TaggingService</value>
|
|
</property>
|
|
<property name="target">
|
|
<ref bean="taggingService"/>
|
|
</property>
|
|
<property name="interceptorNames">
|
|
<list>
|
|
<idref local="TaggingService_transaction"/>
|
|
<idref bean="AuditMethodInterceptor"/>
|
|
<idref bean="exceptionTranslator"/>
|
|
<idref local="TaggingService_security"/>
|
|
</list>
|
|
</property>
|
|
</bean>
|
|
|
|
<bean id="TaggingService_transaction" class="org.springframework.transaction.interceptor.TransactionInterceptor">
|
|
<property name="transactionManager">
|
|
<ref bean="transactionManager"/>
|
|
</property>
|
|
<property name="transactionAttributes">
|
|
<props>
|
|
<prop key="*">${server.transaction.mode.default}</prop>
|
|
</props>
|
|
</property>
|
|
</bean>
|
|
|
|
<bean id="TaggingService_security" class="org.alfresco.repo.security.permissions.impl.AlwaysProceedMethodInterceptor" />
|
|
|
|
<bean id="taggingService" class="org.alfresco.repo.tagging.TaggingServiceImpl">
|
|
<property name="nodeService" ref="NodeService"/>
|
|
<property name="categoryService" ref="CategoryService"/>
|
|
<property name="searchService" ref="SearchService"/>
|
|
<property name="actionService" ref="ActionService"/>
|
|
<property name="contentService" ref="ContentService"/>
|
|
</bean>
|
|
|
|
<bean id="update-tagscope" class="org.alfresco.repo.tagging.UpdateTagScopesActionExecuter" parent="action-executer">
|
|
<property name="publicAction">
|
|
<value>false</value>
|
|
</property>
|
|
<property name="nodeService" ref="NodeService"/>
|
|
<property name="contentService" ref="ContentService"/>
|
|
<property name="taggingService" ref="TaggingService"/>
|
|
</bean>
|
|
|
|
</beans>
|