Back to project page GitHubContributionsApp.
The source code is released under:
GNU General Public License
If you think the Android project GitHubContributionsApp 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.githubcardandroidapp.app.GitHubContributionsIO; // w w w . j a v a 2s. c om import com.githubcardandroidapp.app.BusinessObjects.GitHubProfileDetails; import org.json.JSONException; import java.io.IOException; import java.util.List; public interface GitHubProfileDetailsDownloader { GitHubProfileDetails downloadProfileDetails(String login) throws IOException, JSONException; List<String> downloadUserRepositories(String login) throws IOException, JSONException; }