>
> Best regards,
> Amandeep Singh
>
>
>
--
View this message in context:
http://www.nabble.com/Regarding-Response-Builder-tp24456722p24600481.html
Sent from the Solr - User mailing list archive at Nabble.com.
: 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 So
The responsebuiilder class has SolrQueryRequest as public type. Using
SolrQueryRequest we can get a list of SolrParams like
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) metho