Back to project page BikeStation.
The source code is released under:
GNU General Public License
If you think the Android project BikeStation 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 com.bikestation.app.account; /*w w w.j a v a 2 s.c o m*/ import android.app.Service; import android.content.Intent; import android.os.IBinder; import com.bikestation.app.account.AccountAuthenticator; public class AuthenticationService extends Service { @Override public IBinder onBind(Intent intent) { return new AccountAuthenticator(this).getIBinder(); } }