Package org.apache.directory.server.core.partition.impl.btree

Examples of org.apache.directory.server.core.partition.impl.btree.MutableBTreePartitionConfiguration


        String tempDir = System.getProperty("java.io.tmpdir");
        cfg.setWorkingDirectory(new File(tempDir));
   
        cfg.setLdapPort(port);
   
        MutableBTreePartitionConfiguration partitionConfiguration = new MutableBTreePartitionConfiguration();
        partitionConfiguration.setSuffix(defaultPartitionSuffix);
        partitionConfiguration
                .setContextEntry(getRootPartitionAttributes(defaultPartitionName));
        partitionConfiguration.setName(defaultPartitionName);
   
        cfg.setContextPartitionConfigurations(Collections
                .singleton(partitionConfiguration));
        // Start the Server
   
View Full Code Here

TOP

Related Classes of org.apache.directory.server.core.partition.impl.btree.MutableBTreePartitionConfiguration

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.