Files
alfresco-community-repo/config/alfresco/linkvalidation-service-context.xml
Jon Cox ec07d35a23 Point checkin.
Prep for delivering LinkValidationServcice API;
Ignore the API for now (it will evolve rapidly 
over the next few days).  The main thing going
on here is that now the Spring wiring is basically
right for presenting things as services & controlling
transaction boundaries.  It's also possible to run
this outside of the Alfresco webapp, which makes
incremental compilation/testing much easier.


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5758 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2007-05-23 01:13:18 +00:00

19 lines
593 B
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="linkValidationService"
class="org.alfresco.linkvalidation.LinkValidationServiceImpl">
<property name="attributeService">
<ref bean="attributeService"/>
</property>
<property name="avmRemote">
<ref bean="avmRemote"/>
</property>
<property name="virtServerRegistry">
<ref bean="VirtServerRegistry"/>
</property>
</bean>
</beans>