More Spring fallout. Abstract base beans have to be marked as such

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2141 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2006-01-18 17:48:55 +00:00
parent 572f151402
commit 874d213e1a
2 changed files with 4 additions and 4 deletions

View File

@@ -59,7 +59,7 @@
<!-- Action Conditions --> <!-- Action Conditions -->
<bean id="action-condition-evaluator" init-method="init"> <bean id="action-condition-evaluator" abstract="true" init-method="init">
<property name="runtimeActionService"> <property name="runtimeActionService">
<ref bean="actionService" /> <ref bean="actionService" />
</property> </property>
@@ -127,7 +127,7 @@
<!-- Actions --> <!-- Actions -->
<bean id="action-executer" init-method="init"> <bean id="action-executer" abstract="true" init-method="init">
<property name="runtimeActionService"> <property name="runtimeActionService">
<ref bean="actionService" /> <ref bean="actionService" />
</property> </property>

View File

@@ -52,7 +52,7 @@
<!-- Rule types --> <!-- Rule types -->
<bean id="rule-type-base" init-method="init"> <bean id="rule-type-base" abstract="true" init-method="init">
<property name="ruleService"> <property name="ruleService">
<ref bean="ruleService"/> <ref bean="ruleService"/>
</property> </property>
@@ -81,7 +81,7 @@
<!-- Rule triggers --> <!-- Rule triggers -->
<bean id="rule-trigger-base" init-method="registerRuleTrigger"> <bean id="rule-trigger-base" abstract="true" init-method="registerRuleTrigger">
<property name="policyComponent"> <property name="policyComponent">
<ref bean="policyComponent"/> <ref bean="policyComponent"/>
</property> </property>