Back to project page SelfossAndroidClient.
The source code is released under:
GNU General Public License
If you think the Android project SelfossAndroidClient 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 org.vester.selfoss.operation; // w w w. j a v a 2 s. c om import java.io.IOException; import java.io.InputStream; import java.net.HttpURLConnection; import java.net.MalformedURLException; import java.net.URL; import org.json.JSONException; public interface Operation { void setURL(String url); URL createURL() throws MalformedURLException; String getRequestMethod(); void processResponse(InputStream inputStream) throws JSONException, IOException; void writeOutput(HttpURLConnection con) throws IOException; void setLogin(String login); int getOperationTitle(); }