First cut of content expiration support

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5674 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Gavin Cornwell
2007-05-14 19:40:10 +00:00
parent 652bed012c
commit e637299ed8
13 changed files with 2322 additions and 1485 deletions

View File

@@ -277,6 +277,31 @@
<ref bean="excludeRegexMatcher"/>
</list>
</property>
</bean>
<!-- Bean used to process content that has expired in AVM staging areas -->
<bean id="avmExpiredContentProcessor" class="org.alfresco.repo.avm.AVMExpiredContentProcessor">
<property name="avmService">
<ref bean="AVMService" />
</property>
<property name="avmSyncService">
<ref bean="AVMSyncService" />
</property>
<property name="nodeService">
<ref bean="NodeService" />
</property>
<property name="workflowService">
<ref bean="WorkflowService" />
</property>
<property name="personService">
<ref bean="PersonService" />
</property>
<property name="permissionService">
<ref bean="PermissionService" />
</property>
<property name="transactionService">
<ref bean="TransactionService" />
</property>
</bean>
<!-- AVM Locking. -->