mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
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:
@@ -59,7 +59,7 @@
|
||||
|
||||
<!-- Action Conditions -->
|
||||
|
||||
<bean id="action-condition-evaluator" init-method="init">
|
||||
<bean id="action-condition-evaluator" abstract="true" init-method="init">
|
||||
<property name="runtimeActionService">
|
||||
<ref bean="actionService" />
|
||||
</property>
|
||||
@@ -127,7 +127,7 @@
|
||||
|
||||
<!-- Actions -->
|
||||
|
||||
<bean id="action-executer" init-method="init">
|
||||
<bean id="action-executer" abstract="true" init-method="init">
|
||||
<property name="runtimeActionService">
|
||||
<ref bean="actionService" />
|
||||
</property>
|
||||
|
@@ -52,7 +52,7 @@
|
||||
|
||||
<!-- Rule types -->
|
||||
|
||||
<bean id="rule-type-base" init-method="init">
|
||||
<bean id="rule-type-base" abstract="true" init-method="init">
|
||||
<property name="ruleService">
|
||||
<ref bean="ruleService"/>
|
||||
</property>
|
||||
@@ -81,7 +81,7 @@
|
||||
|
||||
<!-- Rule triggers -->
|
||||
|
||||
<bean id="rule-trigger-base" init-method="registerRuleTrigger">
|
||||
<bean id="rule-trigger-base" abstract="true" init-method="registerRuleTrigger">
|
||||
<property name="policyComponent">
|
||||
<ref bean="policyComponent"/>
|
||||
</property>
|
||||
|
Reference in New Issue
Block a user