Stuck AVMService into ServiceRegistry. Started wrapping AVMService

with appropriate advice.


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@3661 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Britt Park
2006-09-02 23:18:38 +00:00
parent be987843f5
commit 7c70be1811
3 changed files with 43 additions and 1 deletions

View File

@@ -1006,7 +1006,7 @@
<!-- The AVMService -->
<bean id="AVMService" class="org.alfresco.repo.avm.AVMServiceImpl">
<bean id="avmService" class="org.alfresco.repo.avm.AVMServiceImpl">
<property name="retryingTransaction">
<ref bean="retryingTransaction"/>
</property>
@@ -1014,6 +1014,29 @@
<ref bean="avmRepository"/>
</property>
</bean>
<bean id="AVMService" class="org.springframework.aop.framework.ProxyFactoryBean">
<property name="proxyInterfaces">
<value>org.alfresco.service.cmr.avm.AVMService</value>
</property>
<property name="target">
<ref bean="avmService"/>
</property>
<property name="interceptorNames">
<list>
<idref local="AVMService_descriptor"/>
</list>
</property>
</bean>
<bean id="AVMService_descriptor" parent="AlfrescoServiceDescriptor">
<property name="interface">
<value>org.alfresco.service.cmr.avm.AVMService</value>
</property>
<property name="description">
<value>AVM Service</value>
</property>
</bean>
<!-- Workflow Service -->