Uses of Interface
org.apache.solr.rest.ManagedResourceObserver
-
Packages that use ManagedResourceObserver Package Description org.apache.solr.rest Solr RESTful APIs.org.apache.solr.rest.schema.analysis Analysis-related functionality for RESTful API access to managed resources related to the schema, such as stopwords, protected words, and synonyms. -
-
Uses of ManagedResourceObserver in org.apache.solr.rest
Methods in org.apache.solr.rest with parameters of type ManagedResourceObserver Modifier and Type Method Description void
RestManager.Registry. registerManagedResource(String resourceId, Class<? extends ManagedResource> implClass, ManagedResourceObserver observer)
Register the need to use a ManagedResource; this method is typically called by a Solr component during core initialization to register itself as an observer of a specific type of ManagedResource.Method parameters in org.apache.solr.rest with type arguments of type ManagedResourceObserver Modifier and Type Method Description void
ManagedResource. loadManagedDataAndNotify(Collection<ManagedResourceObserver> observers)
Called once during core initialization to get the managed data loaded from storage and notify observers.protected void
ManagedResource. notifyObserversDuringInit(org.apache.solr.common.util.NamedList<?> args, Collection<ManagedResourceObserver> observers)
Notifies all registered observers that the ManagedResource is initialized. -
Uses of ManagedResourceObserver in org.apache.solr.rest.schema.analysis
Classes in org.apache.solr.rest.schema.analysis that implement ManagedResourceObserver Modifier and Type Class Description class
BaseManagedTokenFilterFactory
Abstract based class for implementing TokenFilterFactory objects that are managed by the REST API.class
ManagedStopFilterFactory
TokenFilterFactory that uses the ManagedWordSetResource implementation for managing stop words using the REST API.class
ManagedSynonymFilterFactory
Deprecated.UseManagedSynonymGraphFilterFactory
instead, but be sure to also useFlattenGraphFilterFactory
at index time (not at search time) as well.class
ManagedSynonymGraphFilterFactory
TokenFilterFactory and ManagedResource implementation for doing CRUD on synonyms using the REST API.
-