Package org.apache.jackrabbit.test.config.util

Examples of org.apache.jackrabbit.test.config.util.PrettyPrinter


  }
   
  public void testReadDynamicConfigFromXml() throws Exception {
    RepositoryConf conf = getRepositoryConf();
    System.out.println(">>>>>>>>>> Config read from 'applications/test/repository.xml'");
    conf.print(new PrettyPrinter(System.out));
    System.out.println();
  }
View Full Code Here


  }
 
  public void testStartRepoWithDefaultConfig() throws Exception {
    RepositoryConf conf = new RepositoryConf();
    System.out.println(">>>>>>>>>> Default config:");
    conf.print(new PrettyPrinter(System.out));
    System.out.println();
   
    RepositoryConfig config = conf.createConfig("applications/test2");
    config.init();
    TransientRepository repo = new TransientRepository(config);
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.test.config.util.PrettyPrinter

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.