Back to project page Sunshine.
The source code is released under:
MIT License
If you think the Android project Sunshine 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 cloudchen.com.sunshine.sync; /*from w w w . j a v a 2s.c o m*/ import android.app.Service; import android.content.Intent; import android.os.IBinder; /** * Created by Cloud on 8/16/14. */ public class SunshineAuthenticatorService extends Service { SunshineAuthenticator sunshineAuthenticator; public SunshineAuthenticatorService() { sunshineAuthenticator = new SunshineAuthenticator(this); } @Override public IBinder onBind(Intent intent) { return sunshineAuthenticator.getIBinder(); } }