Package org.jitterbit.integration.client.mapping.serverapi.ldap

Examples of org.jitterbit.integration.client.mapping.serverapi.ldap.LdapInfoProvider


*/
public final class LdapStructureMappingTreeConverter {

    public MappingTreeStructure convert(LdapStructure ldap, boolean isTarget, CallbackResult callback) {
        IntegrationServer server = IntegrationServer.getInstance();
        LdapInfoProvider provider = server.getServerCall(LdapInfoProvider.class);
        DefaultMappingStructureCallback cb = new DefaultMappingStructureCallback(callback);
        provider.getLdapMappingStructure(ldap, isTarget, cb);
        return cb.getMappingStructure();
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.integration.client.mapping.serverapi.ldap.LdapInfoProvider

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.