Fix AR-377 - able to export everything regardless of permissions (run in background = false).

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2260 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
David Caruana
2006-01-31 13:06:04 +00:00
parent 43833a3d46
commit 89abae6099
3 changed files with 89 additions and 41 deletions

View File

@@ -631,17 +631,11 @@
<bean id="importerComponent" class="org.alfresco.repo.importer.ImporterComponent">
<!-- For now, hard-wire the view parser -->
<property name="viewParser">
<ref bean="viewParser" />
</property>
<property name="namespaceService">
<ref bean="namespaceService" />
<ref bean="NamespaceService" />
</property>
<property name="dictionaryService">
<ref bean="dictionaryService" />
</property>
<property name="behaviourFilter">
<ref bean="policyBehaviourFilter" />
<ref bean="DictionaryService" />
</property>
<property name="nodeService">
<ref bean="NodeService" />
@@ -653,10 +647,22 @@
<ref bean="ContentService" />
</property>
<property name="ruleService">
<ref bean="ruleService" />
<ref bean="RuleService" />
</property>
<property name="permissionService">
<ref bean="permissionService" />
<ref bean="PermissionService" />
</property>
<property name="authorityService">
<ref bean="AuthorityService" />
</property>
<property name="viewParser">
<ref bean="viewParser" />
</property>
<property name="behaviourFilter">
<ref bean="policyBehaviourFilter" />
</property>
<property name="ownableService">
<ref bean="ownableService" />
</property>
</bean>
@@ -828,28 +834,28 @@
<!-- Exporter -->
<bean id="exporterComponent" class="org.alfresco.repo.exporter.ExporterComponent">
<property name="namespaceService">
<ref bean="namespaceService" />
<ref bean="NamespaceService" />
</property>
<property name="dictionaryService">
<ref bean="dictionaryService" />
<ref bean="DictionaryService" />
</property>
<property name="nodeService">
<ref bean="nodeService" />
<ref bean="NodeService" />
</property>
<property name="searchService">
<ref bean="searchService" />
<ref bean="SearchService" />
</property>
<property name="contentService">
<ref bean="contentService" />
<ref bean="ContentService" />
</property>
<property name="descriptorService">
<ref bean="DescriptorService" />
</property>
<property name="authenticationService">
<ref bean="authenticationService" />
<ref bean="AuthenticationService" />
</property>
<property name="permissionService">
<ref bean="permissionService" />
<ref bean="PermissionService" />
</property>
</bean>