Replaced incorrect @PathParameter with @PathVariable

This commit is contained in:
gandrianakis
2015-09-03 12:15:56 +03:00
parent 72c89c51e6
commit 654ccf2dea

View File

@@ -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);
}
----