updated docs to reflect that feign will now handle Generics

This commit is contained in:
Spencer Gibb
2014-11-05 13:37:19 -07:00
parent 8756a88878
commit f215c52f3c

View File

@@ -384,7 +384,7 @@ public class Application extends FeignConfigurer {
----
public interface StoreClient {
@RequestMapping(method = RequestMethod.GET, value = "/stores")
Stores getStores();
List<Store> getStores();
@RequestMapping(method = RequestMethod.POST, value = "/stores/{storeId}", consumes = "application/json")
Store update(@PathParameter("storeId") Long storeId, Store store);