> @Consumes(MediaType.APPLICATION_JSON) > - @Fallback(Fallbacks.NullOnNotFoundOr404.class) > - ProductPackage getProductPackage(@PathParam("id") long id); > + @Fallback(Fallbacks.EmptySetOnNotFoundOr404.class) > + Set<SoftwareDescription> getAllObjects();
Most APIs follow the naming convention to use the `list` prefix for methods that return lists. Rename this method to `listSoftwareDescriptions`? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/296/files#r10452466