Home Contact Download
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!

LSC JDBC Service object

A 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.