Package org.apache.jackrabbit.oak.core

Examples of org.apache.jackrabbit.oak.core.TmpRepositoryService


        this(MicroKernelFactory.getInstance(repositoryConfiguration.getMicrokernelUrl()));
        put(RepositoryConfiguration.class, repositoryConfiguration);
    }

    public GlobalContext(MicroKernel mk) {
        RepositoryService repositoryService = new TmpRepositoryService(mk);
        put(RepositoryService.class, repositoryService);
        put(MicroKernel.class, mk);
        put(Repository.class, new RepositoryImpl(this));
    }
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.oak.core.TmpRepositoryService

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.