Back to project page swazam.
The source code is released under:
MIT License
If you think the Android project swazam 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 at.saws2013.szazam.store; //from w w w. j a v a 2s . c o m import java.util.List; import org.json.JSONArray; import at.saws2013.szazam.entities.IListItem; import at.saws2013.szazam.entities.Request; public interface IRequestStore { List<IListItem> getRequestHistory(); void storeRequest(Request request); List<IListItem> transformToList(JSONArray responseJSON); }