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 .j a v a2 s .com import android.app.Service; import android.content.Intent; import android.os.IBinder; public class LDAPSyncService extends Service { final LDAPSyncAdapter mSyncAdapter = new LDAPSyncAdapter(this); @Override public IBinder onBind(Intent intent) { return mSyncAdapter.getSyncAdapterBinder(); } }