: SolrParams params = req.getParams(); : : Now I want to get the values of those params. What should be the : approach as SolrParams is an abstract class and its get(String) method : is abstract?
your question seems to be more about java basics then about using Solr -- it doens't matter if SolrParams is abstract, any method (including req.getParams()) which says it returns an instance of SolrParams is required to do just that -- return an instance. the SolrParams API contract garuntees that you can call "get(String)" on any instance. -Hoss