Uses of Class
org.apache.solr.rest.BaseSolrResource
-
Packages that use BaseSolrResource 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 BaseSolrResource in org.apache.solr.rest
Subclasses of BaseSolrResource in org.apache.solr.rest Modifier and Type Class Description static classRestManager.ManagedEndpointRequest handling needs a lightweight object to delegate a request to.Methods in org.apache.solr.rest that return types with arguments of type BaseSolrResource Modifier and Type Method Description Class<? extends BaseSolrResource>ManagedResource. getServerResourceClass()Gets the ServerResource class to register this endpoint with the Rest API router; in most cases, the default RestManager.ManagedEndpoint class is sufficient but ManagedResource implementations can override this method if a different ServerResource class is needed.Methods in org.apache.solr.rest with parameters of type BaseSolrResource Modifier and Type Method Description abstract voidManagedResource. doDeleteChild(BaseSolrResource endpoint, String childId)Called to delete a named part (the given childId) of the resource at the given endpointabstract voidManagedResource. doGet(BaseSolrResource endpoint, String childId)Called to retrieve a named part (the given childId) of the resource at the given endpointvoidManagedResource. doPost(BaseSolrResource endpoint, Object json)Just callsManagedResource.doPut(BaseSolrResource,Object); override to change the behavior of POST handling.voidManagedResource. doPut(BaseSolrResource endpoint, Object json)Applies changes to initArgs or managed data. -
Uses of BaseSolrResource in org.apache.solr.rest.schema.analysis
Methods in org.apache.solr.rest.schema.analysis with parameters of type BaseSolrResource Modifier and Type Method Description voidManagedSynonymFilterFactory.SynonymManager. doDeleteChild(BaseSolrResource endpoint, String childId)voidManagedSynonymGraphFilterFactory.SynonymManager. doDeleteChild(BaseSolrResource endpoint, String childId)voidManagedWordSetResource. doDeleteChild(BaseSolrResource endpoint, String childId)Deletes words managed by this resource.voidManagedSynonymFilterFactory.SynonymManager. doGet(BaseSolrResource endpoint, String childId)voidManagedSynonymGraphFilterFactory.SynonymManager. doGet(BaseSolrResource endpoint, String childId)voidManagedWordSetResource. doGet(BaseSolrResource endpoint, String childId)Implements the GET request to provide the list of words to the client.
-