Back to project page meets-android.
The source code is released under:
MIT License
If you think the Android project meets-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.theagilemonkeys.meets.models; //from www. j ava 2 s . c o m import com.theagilemonkeys.meets.models.base.MeetsModel; import java.util.List; /** * Android Meets SDK * Original work Copyright (c) 2014 [TheAgileMonkeys] * * @author ??lvaro Lpez Espinosa */ public interface MeetsStock { interface ItemList extends MeetsModel<ItemList> { ItemList fetch(List<Integer> ids); ItemList setIds(List<Integer> ids); List<Integer> getIds(); List<Item> getList(); } interface Item { int getProductId(); String getProductSku(); boolean isInStock(); double getQuantity(); } }