RM-6941 Changes for retention action on frozen nodes [ags]

This commit is contained in:
bdwiwedi
2021-08-02 17:18:24 +05:30
parent d9f1c0ce91
commit f5b904678e
2 changed files with 5 additions and 1 deletions

View File

@@ -703,6 +703,7 @@
<value>retain</value>
</list>
</property>
<property name="dispositionService" ref="dispositionService"/>
</bean>
<bean id="RecordsManagementActionService" class="org.springframework.aop.framework.ProxyFactoryBean">

View File

@@ -80,9 +80,12 @@ public class RecordsManagementActionServiceImpl implements RecordsManagementActi
private ClassPolicyDelegate<BeforeRMActionExecution> beforeRMActionExecutionDelegate;
private ClassPolicyDelegate<OnRMActionExecution> onRMActionExecutionDelegate;
@Autowired
private DispositionService dispositionService;
public void setDispositionService(DispositionService dispositionService) {
this.dispositionService = dispositionService;
}
/** list of disposition actions to automatically execute */
private List<String> retentionActions;