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
This commit is contained in:
Jon Cox
2007-05-23 01:13:18 +00:00
parent c9fdaad645
commit ec07d35a23
3 changed files with 109 additions and 33 deletions

View File

@@ -0,0 +1,18 @@
<?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>