Package org.apache.jackrabbit.core.config

Examples of org.apache.jackrabbit.core.config.UserManagerConfig


            copyPrivileges(builder);
            copyVersionStore(builder, uriToPrefix, idxToPrefix);
            copyWorkspaces(builder, uriToPrefix, idxToPrefix);

            String groupsPath;
            UserManagerConfig userConfig = config.getSecurityConfig().getSecurityManagerConfig().getUserManagerConfig();
            if (userConfig != null) {
                groupsPath = userConfig.getParameters().getProperty(UserManagerImpl.PARAM_GROUPS_PATH, UserConstants.DEFAULT_GROUP_PATH);
            } else {
                groupsPath = UserConstants.DEFAULT_GROUP_PATH;
            }
            // TODO: default hooks?
            CommitHook hook = new CompositeHook(
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.core.config.UserManagerConfig

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.