ResourceMethod invoker = match(request.getHttpMethod(), request);
if (invoker == null)
{
throw new NotFoundException("Could not find resource for relative : " + path + " of full path: " + request.getUri().getRequestUri());
}
uriInfo.pushMatchedURI(path, Encode.decode(path));
populatePathParams(request, matcher, path);
return invoker;
}
throw new NotFoundException("Could not find resource for relative : " + path + " of full path: " + request.getUri().getRequestUri());
}