package com.truckmuncher.app.authentication; import android.app.Service; import android.content.Intent; import android.os.IBinder; import android.support.annotation.NonNull; /** * A bound Service that instantiates the authenticator * when started. */ public class AuthenticatorService extends Service { // Instance field that stores the authenticator object private Authenticator authenticator; @Override public void onCreate() { // Create a new authenticator object authenticator = new Authenticator(this); } /* * When the system binds to this Service to make the RPC call * return the authenticator's IBinder. */ @Override public IBinder onBind(@NonNull Intent intent) { return authenticator.getIBinder(); } }