Back to project page Locast-Core-Android.
The source code is released under:
GNU General Public License
If you think the Android project Locast-Core-Android 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 edu.mit.mobile.android.locast.net; //from ww w. ja v a2 s. c o m import android.accounts.Account; import android.content.Context; public interface LocastApplicationCallbacks { /** * Implement this to get the network client that will be used for the given account. * * @param context * @param account * @return */ public NetworkClient getNetworkClientForAccount(Context context, Account account); }