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.Serialization; // ww w. j av a 2 s . c o m import com.githubcardandroidapp.app.BusinessObjects.GitHubProfileDetails; import com.githubcardandroidapp.app.BusinessObjects.GitHubUserRepositories; import java.io.FileNotFoundException; import java.io.IOException; /** * Created by Muhammad on 6/4/2014. */ public interface PersistenceHandler { void serializeProfile(String userName, GitHubProfileDetails gitHubProfileDetails) throws IOException; void serializeRepositories(String userName, GitHubUserRepositories gitHubUserRepositories) throws IOException; GitHubProfileDetails readProfileFromPersistence(String userName) throws IOException; GitHubUserRepositories readUserRepositoriesFromPersistence(String userName) throws IOException; boolean isPersistedDataCurrent(String userName); boolean isPersistedDataAvailable(String userName); }