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 net.alteridem.sunshine.sync; //ww w . j ava 2s .c o m import android.app.Service; import android.content.Intent; import android.os.IBinder; /** * The service which allows the sync adapter framework to access the authenticator. */ public class WeatherAuthenticatorService extends Service { private WeatherAuthenticator mAuthenticator; @Override public void onCreate() { mAuthenticator = new WeatherAuthenticator(this); } @Override public IBinder onBind(Intent intent) { return mAuthenticator.getIBinder(); } }