File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
stroom-index-impl/src/main/java/stroom/index/impl
stroom-index-mock/src/main/java/stroom/index/mock Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ protected void configure() {
4646
4747 bind (IndexShardWriterCache .class ).to (IndexShardWriterCacheImpl .class );
4848 bind (LuceneIndexDocCache .class ).to (LuceneIndexDocCacheImpl .class );
49+ bind (IndexFieldProviders .class ).to (IndexFieldProvidersImpl .class );
4950 bind (IndexFieldCache .class ).to (IndexFieldCacheImpl .class );
5051 bind (IndexStore .class ).to (IndexStoreImpl .class );
5152 bind (IndexVolumeService .class ).to (IndexVolumeServiceImpl .class );
@@ -54,7 +55,6 @@ protected void configure() {
5455 bind (IndexFieldService .class ).to (IndexFieldServiceImpl .class );
5556 bind (Indexer .class ).to (IndexerImpl .class );
5657 bind (ActiveShardsCache .class ).to (ActiveShardsCacheImpl .class );
57- bind (IndexFieldProviders .class ).to (IndexFieldProvidersImpl .class );
5858
5959 GuiceUtil .buildMultiBinder (binder (), Clearable .class )
6060 .addBinding (LuceneIndexDocCacheImpl .class )
Original file line number Diff line number Diff line change 2020import stroom .importexport .api .ImportExportActionHandler ;
2121import stroom .index .impl .IndexElementModule ;
2222import stroom .index .impl .IndexFieldCacheImpl ;
23+ import stroom .index .impl .IndexFieldProvidersImpl ;
2324import stroom .index .impl .IndexFieldService ;
2425import stroom .index .impl .IndexShardService ;
2526import stroom .index .impl .IndexShardWriterCache ;
3334import stroom .index .shared .LuceneIndexDoc ;
3435import stroom .query .common .v2 .IndexFieldCache ;
3536import stroom .query .common .v2 .IndexFieldProvider ;
37+ import stroom .query .common .v2 .IndexFieldProviders ;
3638import stroom .util .guice .GuiceUtil ;
3739
3840import com .google .inject .AbstractModule ;
@@ -45,6 +47,7 @@ protected void configure() {
4547
4648 bind (IndexShardWriterCache .class ).to (MockIndexShardWriterCache .class );
4749 bind (LuceneIndexDocCache .class ).to (LuceneIndexDocCacheImpl .class );
50+ bind (IndexFieldProviders .class ).to (IndexFieldProvidersImpl .class );
4851 bind (IndexFieldCache .class ).to (IndexFieldCacheImpl .class );
4952 bind (IndexStore .class ).to (IndexStoreImpl .class );
5053 bind (IndexVolumeService .class ).to (MockIndexVolumeService .class );
You can’t perform that action at this time.
0 commit comments