Skip to content

Commit

Permalink
Extend URITemplateProxyServlet to support urls with a duplicated para…
Browse files Browse the repository at this point in the history
…meter with different values, like: param1=value1&param1=value2&param1=value3
  • Loading branch information
josegar74 committed Oct 26, 2023
1 parent e8dda2e commit 4c48e41
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,11 @@ private Element query(Map<String, String> queryFields, HttpServletRequest reques
EsSearchManager searchMan = applicationContext.getBean(EsSearchManager.class);
ServiceContext context = ApiUtils.createServiceContext(request);

Element model = new Element("search");
return model;

// TODOES this is the proxy
throw new NotImplementedException("Not implemented in ES");
//throw new NotImplementedException("Not implemented in ES");
// Element params = new Element("params");
// queryFields.forEach((k, v) -> params.addContent(new Element(k).setText(v)));
//
Expand Down

0 comments on commit 4c48e41

Please sign in to comment.