UriBuilderImpl builder = new UriBuilderImpl();
builder.scheme(absolute.getProtocol());
builder.host(absolute.getHost());
builder.port(absolute.getPort());
builder.path(absolute.getPath());
builder.replaceQueryParams(absolute.getQuery());
absolutePath = builder.build();
}
catch (MalformedURLException e)
{
throw new RuntimeException(e);