> + > + /** > + * Updates a service by applying JSONPatch internally. > + * https://tools.ietf.org/html/rfc6902 > + * This requires providing your updateable JSON and the target JSON. > + * > + * @param service Source JSON > + * @param createService Target JSON > + * @return a URI to the created service > + */ > + @Named("service:update") > + @PATCH > + @Path("/{id}") > + @ResponseParser(ParseServiceURIFromHeaders.class) > + @MapBinder(JSONPatchUpdate.class) > + @Fallback(NullOnNotFoundOr404.class)
Same comment about 404 fallbacks in "wrote" operations. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs-openstack/pull/179/files#r25982198
