Package org.apache.jackrabbit.oak.spi.lifecycle

Examples of org.apache.jackrabbit.oak.spi.lifecycle.CompositeInitializer


        return this.executor;
    }

    public ContentRepository createContentRepository() {
        IndexEditorProvider indexEditors = CompositeIndexEditorProvider.compose(indexEditorProviders);
        OakInitializer.initialize(store, new CompositeInitializer(initializers), indexEditors);

        QueryIndexProvider indexProvider = CompositeQueryIndexProvider.compose(queryIndexProviders);

        List<CommitHook> initHooks = new ArrayList<CommitHook>(commitHooks);
        initHooks.add(new EditorHook(CompositeEditorProvider
View Full Code Here


        }

        @Nonnull
        @Override
        public RepositoryInitializer getRepositoryInitializer() {
            return new CompositeInitializer(Collections.<RepositoryInitializer>emptyList());
        }
View Full Code Here

        KernelNodeStore store = new KernelNodeStore(kernel);

        IndexHookProvider indexHooks = CompositeIndexHookProvider
                .compose(indexHookProviders);
        OakInitializer.initialize(store,
                new CompositeInitializer(initializers), indexHooks);

        commitHooks.add(IndexHookManager.of(indexHooks));

        withValidatorHook();
        withSecurityHooks();
View Full Code Here

        super(RepositoryInitializer.class);
    }

    @Override
    public NodeState initialize(NodeState state) {
        return new CompositeInitializer(getServices()).initialize(state);
    }
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.oak.spi.lifecycle.CompositeInitializer

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.