Back to project page Codethink-LDAP-Sync.
The source code is released under:
This software is copyright (c) 2010 Walter Mundt. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following cond...
If you think the Android project Codethink-LDAP-Sync 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 info.codethink.ldapsync; //from w w w. jav a2s . com import android.app.Service; import android.content.Intent; import android.os.IBinder; import android.util.Log; public class LDAPAuthenticatorService extends Service { private LDAPAuthenticator mAuthenticator; private static final String TAG = "LDAPAuthenticatorService"; @Override public void onCreate() { Log.i(TAG, "created"); mAuthenticator = new LDAPAuthenticator(this); } @Override public IBinder onBind(Intent intent) { Log.i(TAG, "bound"); return mAuthenticator.getIBinder(); } @Override public void onDestroy() { Log.i(TAG, "destroyed"); } }