Back to project page spotastop.
The source code is released under:
MIT License
If you think the Android project spotastop 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 requests; //from w ww. j a va2 s. c o m import java.util.ArrayList; import resources.Resource; import responses.AsyncCallback; import responses.beContentResponse; public abstract class beContentRequest { protected Criteria criteria; protected Data sendingData; protected beContentResponse responseHandler = new beContentResponse(); public beContentRequest(Criteria c, ArrayList<Resource> data,ArrayList<Link> rels){ this.criteria=c; this.sendingData=new Data(data,rels); } public abstract String buildRequest(); public abstract beContentResponse doSync(); public abstract void doAsync(AsyncCallback callback); }