Class IndexingUriFinderListBasic
- java.lang.Object
-
- edu.cornell.mannlib.vitro.webapp.searchindex.indexing.IndexingUriFinderListBasic
-
- All Implemented Interfaces:
IndexingUriFinderList
public class IndexingUriFinderListBasic extends Object implements IndexingUriFinderList
The basic implementation.
-
-
Constructor Summary
Constructors Constructor Description IndexingUriFinderListBasic(Collection<? extends IndexingUriFinder> finders)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Set<String>findAdditionalUris(org.apache.jena.rdf.model.Statement stmt)Exercise the list of finders, and return a set of the URIs that they found for this statement.voidstartIndexing()Do any required setup on the individual finders.voidstopIndexing()Do any required teardown on the individual finders.
-
-
-
Constructor Detail
-
IndexingUriFinderListBasic
public IndexingUriFinderListBasic(Collection<? extends IndexingUriFinder> finders)
-
-
Method Detail
-
startIndexing
public void startIndexing()
Description copied from interface:IndexingUriFinderListDo any required setup on the individual finders.- Specified by:
startIndexingin interfaceIndexingUriFinderList
-
stopIndexing
public void stopIndexing()
Description copied from interface:IndexingUriFinderListDo any required teardown on the individual finders.- Specified by:
stopIndexingin interfaceIndexingUriFinderList
-
findAdditionalUris
public Set<String> findAdditionalUris(org.apache.jena.rdf.model.Statement stmt)
Description copied from interface:IndexingUriFinderListExercise the list of finders, and return a set of the URIs that they found for this statement.- Specified by:
findAdditionalUrisin interfaceIndexingUriFinderList
-
-