Package org.apache.jackrabbit.oak.plugins.nodetype

Examples of org.apache.jackrabbit.oak.plugins.nodetype.DefaultTypeEditor$DefaultTypeDiff


    Jcr(Oak oak) {
        this.oak = oak;

        with(new InitialContent());

        with(new DefaultTypeEditor());
        with(new VersionHook());

        with(new SecurityProviderImpl());

        with(new NameValidatorProvider());
View Full Code Here


            OakInitializer.initialize(new KernelNodeStore(kernel),
                    kernelTracker, indexHookProvider);
            Oak oak = new Oak(kernel)
                    .with(new CompositeHook(
                        // TODO: DefaultTypeEditor is JCR specific and does not belong here
                        new DefaultTypeEditor(),
                        new ValidatingHook(validatorProvider)))
                    .with(indexProvider)
                    .with(indexHookProvider);
            services.put(reference, context.registerService(
                    ContentRepository.class.getName(),
View Full Code Here

            context.addServlet(davex, path + "/davex/*");
        }

        private static CommitHook buildDefaultCommitHook() {
            return new CompositeHook(
                    new DefaultTypeEditor(),
                    new ValidatingHook(createDefaultValidatorProvider()),
                    IndexHookManager.of(
                            new CompositeIndexHookProvider(
                            new Property2IndexHookProvider(),
                            new LuceneIndexHookProvider())));
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.oak.plugins.nodetype.DefaultTypeEditor$DefaultTypeDiff

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.