Details
-
Sub-task
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
None
-
None
-
None
-
None
Description
Parsing the ContentItem URI form the uri=
{uri}parameter was brocken because
MultivaluedMap<String,String> params = uriInfo.getPathParameters();
returned an empty map even if the parameter was present in the request URI retrieved from
URI uri = uriInfo.getRequestUri();
As a temporary fix a workaround was added with http://svn.apache.org/r1534931. This fix parsed the parameter from the URI.
This should be replaced with JAX-RS code ASAP.