Examples of asLdapStructure()


Examples of org.jitterbit.integration.client.ldap.ui.SelectedObjectClasses.asLdapStructure()

     * @return the created <code>LdapStructure</code>
     */
    public LdapStructure getDefinedStructure() {
        SelectedObjectClasses classes = classSelectionPage.getSelectedClasses();
        assert classes != null : "No LDAP class selected. The wizard should have prevented the user from continuing.";
        LdapStructure struct = classes.asLdapStructure();
        structureReviewPage.applyTo(struct);
        if (searchParamsPage != null) {
            searchParamsPage.applyTo(struct);
        }
        return struct;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.