I would just do something like this:
String myParam = req.getParams().get("xparam");
where "xparam" is:
http://localhost:8983/solr/select/?q=dog&xparam=something&start=0&rows=10&indent=on
Kartik1 wrote:
>
> The responsebuiilder class has SolrQueryRequest as public type. Using
> SolrQueryRequ
: 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