Android Open Source - Sunshine Sunshine Authenticator Service






From Project

Back to project page Sunshine.

License

The source code is released under:

Apache 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.

Java Source Code

package com.example.android.sunshine.app.sync;
//  w w w .  ja  v a2s . 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 SunshineAuthenticatorService extends Service {
    // Instance field that stores the authenticator object
    private SunshineAuthenticator mAuthenticator;

    @Override
    public void onCreate() {
        // Create a new authenticator object
        mAuthenticator = new SunshineAuthenticator(this);
    }

    /*
     * When the system binds to this Service to make the RPC call
     * return the authenticator's IBinder.
     */
    @Override
    public IBinder onBind(Intent intent) {
        return mAuthenticator.getIBinder();
    }
}




Java Source Code List

com.example.android.sunshine.app.DetailActivity.java
com.example.android.sunshine.app.DetailFragment.java
com.example.android.sunshine.app.FetchWeatherTask.java
com.example.android.sunshine.app.ForecastAdapter.java
com.example.android.sunshine.app.ForecastFragment.java
com.example.android.sunshine.app.MainActivity.java
com.example.android.sunshine.app.SettingsActivity.java
com.example.android.sunshine.app.Utility.java
com.example.android.sunshine.app.data.WeatherContract.java
com.example.android.sunshine.app.data.WeatherDbHelper.java
com.example.android.sunshine.app.data.WeatherProvider.java
com.example.android.sunshine.app.sync.SunshineAuthenticatorService.java
com.example.android.sunshine.app.sync.SunshineAuthenticator.java
com.example.android.sunshine.app.sync.SunshineSyncAdapter.java
com.example.android.sunshine.app.sync.SunshineSyncService.java