Commit 654ccf2d by gandrianakis

Replaced incorrect @PathParameter with @PathVariable

parent 72c89c51
......@@ -706,7 +706,7 @@ public interface StoreClient {
List<Store> getStores();
@RequestMapping(method = RequestMethod.POST, value = "/stores/{storeId}", consumes = "application/json")
Store update(@PathParameter("storeId") Long storeId, Store store);
Store update(@PathVariable("storeId") Long storeId, Store store);
}
----
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment