Tenant service/unindexed version store build fix ups

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@10950 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Andrew Hind
2008-09-22 10:52:53 +00:00
parent b57273cc39
commit c621550b82
2 changed files with 4 additions and 0 deletions

View File

@@ -561,6 +561,9 @@
class="org.alfresco.repo.search.impl.lucene.ADMLuceneUnIndexedIndexAndSearcherFactory"> class="org.alfresco.repo.search.impl.lucene.ADMLuceneUnIndexedIndexAndSearcherFactory">
<property name="nodeService"> <property name="nodeService">
<ref bean="mlAwareNodeService" /> <ref bean="mlAwareNodeService" />
</property>
<property name="tenantService">
<ref bean="tenantService"/>
</property> </property>
<property name="dictionaryService"> <property name="dictionaryService">
<ref bean="dictionaryService" /> <ref bean="dictionaryService" />

View File

@@ -34,6 +34,7 @@ public class ADMLuceneUnIndexedIndexAndSearcherFactory extends ADMLuceneIndexerA
{ {
ADMLuceneNoActionIndexerImpl indexer = ADMLuceneIndexerImpl.getNoActionIndexer(storeRef, deltaId, this); ADMLuceneNoActionIndexerImpl indexer = ADMLuceneIndexerImpl.getNoActionIndexer(storeRef, deltaId, this);
indexer.setNodeService(nodeService); indexer.setNodeService(nodeService);
indexer.setTenantService(tenantService);
indexer.setDictionaryService(dictionaryService); indexer.setDictionaryService(dictionaryService);
// indexer.setLuceneIndexLock(luceneIndexLock); // indexer.setLuceneIndexLock(luceneIndexLock);
indexer.setFullTextSearchIndexer(fullTextSearchIndexer); indexer.setFullTextSearchIndexer(fullTextSearchIndexer);