Package org.apache.jackrabbit.spi2jcr

Examples of org.apache.jackrabbit.spi2jcr.RepositoryServiceImpl


        // TODO: make configurable
        BatchReadConfig brconfig = new BatchReadConfig();
        brconfig.setDepth(NameConstants.NT_FILE, BatchReadConfig.DEPTH_INFINITE);
        brconfig.setDepth(NameConstants.NT_RESOURCE, BatchReadConfig.DEPTH_INFINITE);

        return new RepositoryServiceImpl(jackrabbitRepo, brconfig);
    }
View Full Code Here


        BatchReadConfig brConfig = new BatchReadConfig();
        Object obj = params.get(PARAM_BATCH_READ_CONFIG);
        if (obj != null && obj instanceof BatchReadConfig) {
            brConfig = (BatchReadConfig) obj;
        }
        service = new RepositoryServiceImpl((Repository) repo, brConfig);
    }
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.spi2jcr.RepositoryServiceImpl

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.