RM-858 (RM Set Property Value text field is missing on return to the rules edit page)

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/modules/recordsmanagement/HEAD@54312 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Tuna Aksoy
2013-08-20 22:19:26 +00:00
parent 6ebe5462cc
commit cf171d2ff9

View File

@@ -21,26 +21,26 @@
<value>RECORD</value> <value>RECORD</value>
</list> </list>
</property> </property>
</bean> </bean>
<bean id="rm-ac-disposition-action-relative-positions" class="org.alfresco.repo.action.constraint.EnumParameterConstraint" parent="action-constraint"> <bean id="rm-ac-disposition-action-relative-positions" class="org.alfresco.repo.action.constraint.EnumParameterConstraint" parent="action-constraint">
<property name="enumClassName" value="org.alfresco.module.org_alfresco_module_rm.action.evaluator.DispositionActionRelativePositions" /> <property name="enumClassName" value="org.alfresco.module.org_alfresco_module_rm.action.evaluator.DispositionActionRelativePositions" />
</bean> </bean>
<bean id="rm-ac-disposition-actions" class="org.alfresco.module.org_alfresco_module_rm.action.constraint.DispositionActionParameterConstraint" parent="action-constraint"> <bean id="rm-ac-disposition-actions" class="org.alfresco.module.org_alfresco_module_rm.action.constraint.DispositionActionParameterConstraint" parent="action-constraint">
<property name="recordsManagementActionService" ref="RecordsManagementActionService"/> <property name="recordsManagementActionService" ref="RecordsManagementActionService"/>
</bean> </bean>
<bean id="rm-ac-record-types" class="org.alfresco.module.org_alfresco_module_rm.action.constraint.RecordTypeParameterConstraint" parent="action-constraint"> <bean id="rm-ac-record-types" class="org.alfresco.module.org_alfresco_module_rm.action.constraint.RecordTypeParameterConstraint" parent="action-constraint">
<property name="recordService" ref="RecordService"/> <property name="recordService" ref="RecordService"/>
<property name="dictionaryService" ref="DictionaryService"/> <property name="dictionaryService" ref="DictionaryService"/>
</bean> </bean>
<bean id="rm-ac-manual-events" class="org.alfresco.module.org_alfresco_module_rm.action.constraint.ManualEventParameterConstraint" parent="action-constraint"> <bean id="rm-ac-manual-events" class="org.alfresco.module.org_alfresco_module_rm.action.constraint.ManualEventParameterConstraint" parent="action-constraint">
<property name="recordsManagementEventService" ref="RecordsManagementEventService"/> <property name="recordsManagementEventService" ref="RecordsManagementEventService"/>
</bean> </bean>
<bean id="rm-ac-scripts" class="org.alfresco.repo.action.constraint.FolderContentsParameterConstraint" parent="action-constraint"> <bean id="rm-ac-scripts" class="org.alfresco.repo.action.constraint.FolderContentsParameterConstraint" parent="action-constraint">
<property name="dictionaryService" ref="DictionaryService"/> <property name="dictionaryService" ref="DictionaryService"/>
<property name="searchService" ref="SearchService"/> <property name="searchService" ref="SearchService"/>
<property name="nodeService" ref="NodeService"/> <property name="nodeService" ref="NodeService"/>
@@ -54,40 +54,40 @@
</list> </list>
</property> </property>
</bean> </bean>
<!-- Conditions --> <!-- Conditions -->
<bean id="rmCapabilityConditionEvaluator" <bean id="rmCapabilityConditionEvaluator"
parent="action-condition-evaluator" parent="action-condition-evaluator"
abstract="true" abstract="true"
class="org.alfresco.module.org_alfresco_module_rm.action.evaluator.CapabilityConditionEvaluator"> class="org.alfresco.module.org_alfresco_module_rm.action.evaluator.CapabilityConditionEvaluator">
<property name="recordsManagementActionService" ref="RecordsManagementActionService" /> <property name="recordsManagementActionService" ref="RecordsManagementActionService" />
<property name="retryingTransactionHelper" ref="retryingTransactionHelper" /> <property name="retryingTransactionHelper" ref="retryingTransactionHelper" />
</bean> </bean>
<bean id="isKind" <bean id="isKind"
parent="action-condition-evaluator" parent="action-condition-evaluator"
class="org.alfresco.module.org_alfresco_module_rm.action.evaluator.IsKindEvaluator"> class="org.alfresco.module.org_alfresco_module_rm.action.evaluator.IsKindEvaluator">
<property name="recordsManagementActionService" ref="RecordsManagementActionService" /> <property name="recordsManagementActionService" ref="RecordsManagementActionService" />
<property name="retryingTransactionHelper" ref="retryingTransactionHelper" /> <property name="retryingTransactionHelper" ref="retryingTransactionHelper" />
<property name="filePlanService" ref="FilePlanService" /> <property name="filePlanService" ref="FilePlanService" />
</bean> </bean>
<bean id="hasDispositionAction" <bean id="hasDispositionAction"
parent="action-condition-evaluator" parent="action-condition-evaluator"
class="org.alfresco.module.org_alfresco_module_rm.action.evaluator.HasDispositionActionEvaluator"> class="org.alfresco.module.org_alfresco_module_rm.action.evaluator.HasDispositionActionEvaluator">
<property name="recordsManagementActionService" ref="RecordsManagementActionService" /> <property name="recordsManagementActionService" ref="RecordsManagementActionService" />
<property name="retryingTransactionHelper" ref="retryingTransactionHelper" /> <property name="retryingTransactionHelper" ref="retryingTransactionHelper" />
<property name="dispositionService" ref="DispositionService" /> <property name="dispositionService" ref="DispositionService" />
</bean> </bean>
<bean id="isRecordType" <bean id="isRecordType"
parent="action-condition-evaluator" parent="action-condition-evaluator"
class="org.alfresco.module.org_alfresco_module_rm.action.evaluator.IsRecordTypeEvaluator"> class="org.alfresco.module.org_alfresco_module_rm.action.evaluator.IsRecordTypeEvaluator">
<property name="recordsManagementActionService" ref="RecordsManagementActionService" /> <property name="recordsManagementActionService" ref="RecordsManagementActionService" />
<property name="retryingTransactionHelper" ref="retryingTransactionHelper" /> <property name="retryingTransactionHelper" ref="retryingTransactionHelper" />
<property name="nodeService" ref="NodeService" /> <property name="nodeService" ref="NodeService" />
</bean> </bean>
<bean id="isCutoff" parent="rmCapabilityConditionEvaluator"> <bean id="isCutoff" parent="rmCapabilityConditionEvaluator">
<property name="capabilityCondition" ref="capabilityCondition.cutoff"/> <property name="capabilityCondition" ref="capabilityCondition.cutoff"/>
</bean> </bean>
@@ -103,7 +103,7 @@
<bean id="isFrozen" parent="rmCapabilityConditionEvaluator"> <bean id="isFrozen" parent="rmCapabilityConditionEvaluator">
<property name="capabilityCondition" ref="capabilityCondition.frozen"/> <property name="capabilityCondition" ref="capabilityCondition.frozen"/>
</bean> </bean>
<bean id="isRecordFiled" parent="rmCapabilityConditionEvaluator"> <bean id="isRecordFiled" parent="rmCapabilityConditionEvaluator">
<property name="capabilityCondition" ref="capabilityCondition.recordFiled"/> <property name="capabilityCondition" ref="capabilityCondition.recordFiled"/>
</bean> </bean>
@@ -177,7 +177,7 @@
</value> </value>
</property> </property>
</bean> </bean>
<!-- Cutoff action --> <!-- Cutoff action -->
<bean id="cutoff_proxy" parent="rmProxyAction" > <bean id="cutoff_proxy" parent="rmProxyAction" >
@@ -908,6 +908,7 @@
<bean id="setPropertyValue" class="org.alfresco.module.org_alfresco_module_rm.action.impl.DelegateAction"> <bean id="setPropertyValue" class="org.alfresco.module.org_alfresco_module_rm.action.impl.DelegateAction">
<property name="publicAction" value="true"/> <property name="publicAction" value="true"/>
<property name="delegateAction" ref="set-property-value" /> <property name="delegateAction" ref="set-property-value" />
<property name="adhocPropertiesAllowed" value="true" />
</bean> </bean>
</beans> </beans>