Package org.apache.jackrabbit.core.config

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


  public VersioningConfig createVersioningConfig(Variables variables) throws ConfException {
    FileSystemConfig fsc = null;
    if (getFileSystemConf() != null) {
      fsc = getFileSystemConf().createFileSystemConfig(variables);
    }
    PersistenceManagerConfig pmc = null;
    if (getPersistenceManagerConf() != null) {
      pmc = getPersistenceManagerConf().createPersistenceManagerConfig(variables);
    }
   
    return new VersioningConfig(variables.replaceVariables(getHomeDir()), fsc, pmc);
View Full Code Here


  public PersistenceManagerConf() {
    this.className = DerbyPersistenceManager.class.getName();
  }

  public PersistenceManagerConfig createPersistenceManagerConfig(Variables variables) throws ConfException {
    return new PersistenceManagerConfig(super.createBeanConfig(variables));
  }
View Full Code Here

TOP

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

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.