Android Open Source - Codethink-LDAP-Sync L D A P Authenticator Service






From Project

Back to project page Codethink-LDAP-Sync.

License

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.

Java Source Code

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");
  }

}




Java Source Code List

info.codethink.ldapsync.AccountList.java
info.codethink.ldapsync.LDAPAuthenticatorActivity.java
info.codethink.ldapsync.LDAPAuthenticatorService.java
info.codethink.ldapsync.LDAPAuthenticator.java
info.codethink.ldapsync.LDAPContactSource.java
info.codethink.ldapsync.LDAPEntryPicker.java
info.codethink.ldapsync.LDAPSyncAdapter.java
info.codethink.ldapsync.LDAPSyncMapping.java
info.codethink.ldapsync.LDAPSyncService.java
info.codethink.ldapsync.Utils.java