Back to project page hubblog.
The source code is released under:
MIT License
If you think the Android project hubblog 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.donskifarrell.Hubblog.Interfaces; /*from w w w . j a va 2s . com*/ import com.donskifarrell.Hubblog.Providers.Data.Account; import com.donskifarrell.Hubblog.Providers.Data.Article; import com.donskifarrell.Hubblog.Providers.Data.MetadataTag; import com.donskifarrell.Hubblog.Providers.Data.Site; import java.util.List; /** * Created with IntelliJ IDEA. * User: donski * Date: 22/11/13 * Time: 11:04 */ public interface DataProvider { public void getGitHubDetails(); public Account getAccountDetails(); public boolean setAccountDetails(Account account); public boolean assertAccountDetails(); public List<String> getSiteNames(); public List<Site> getSites(); public void setSites(List<Site> sites); public Article addNewArticle(Site site); public void removeArticle(Article article); public MetadataTag addNewMetadataTag(Article article); public void removeMetadataTag(MetadataTag tag); }