Latest Release
- Release candidate 2.0rc1 (23/12/11)
- Beta version 2.0 (06/07/11)
- Stable version 1.2.1 (15/07/10)
- Nightly builds available to test
Events
- 10/10/2011 - LDAPCon 2011 (Heidelberg, Germany)
- 13/06/2011 - RMLL (Strasbourg, France)
- 9/07/2010 - RMLL (Bordeaux, France)
Community
Get help, contribute or find professional services ...
Find out more!
Search
Open source connector to synchronize identities to a LDAP directory
from any data source including any database with a JDBC connector,
another LDAP server or flat files ...
Download | Read more... | Get started!
Download | Read more... | Get started!
LSC JDBC Service objectA such object will enable LSC to interact with a source database. If you use non standard LDAP object class, LSC should generate for you a simple functional JDBC Service object. Suppose you have a extendedPerson structural LDAP object class, then you should propably have a JDBC Service object named ExtendedPersonJDBCService into the org.lsc.service package: package org.lsc.service;
public class ExtendedPersonJDBCService extends AbstractJdbcService {
@Override
public String getRequestNameForList() {
return "getExtendedPersonList";
}
@Override
public String getRequestNameForObject() {
return "getExtendedPerson";
}
}
This object could then be used by Ibatis. |


