Package org.apache.jackrabbit.test.config

Examples of org.apache.jackrabbit.test.config.ClusterConf


        // Optional search Configuration
        SearchConf sc = parseSearchConf(root);

        // Optional journal Configuration
        ClusterConf cc = parseClusterConf(root);
       
        return new RepositoryConf(home, securityConf, fsc,
                workspaceDirectory, workspaceConfDirectory, defaultWorkspace,
                maxIdleTime, wcTemplate, vc, sc, cc);
    }
View Full Code Here


                String id = getAttribute(element, Xml.ID_ATTRIBUTE, null);
                long syncDelay = Long.parseLong(
                        getAttribute(element, Xml.SYNC_DELAY_ATTRIBUTE, Xml.DEFAULT_SYNC_DELAY));

                JournalConf jc = parseJournalConf(element);
                return new ClusterConf(id, syncDelay, jc);
            }
        }
        return null;
    }
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.test.config.ClusterConf

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.