Package org.apache.jackrabbit.core

Examples of org.apache.jackrabbit.core.CachingHierarchyManager


        atticStore = new ItemStateMap();

        this.stateMgr = stateMgr;

        // create hierarchy manager that uses both transient and persistent state
        hierMgr = new CachingHierarchyManager(rootNodeId, this);
        addListener(hierMgr);

        this.ntReg = ntReg;
    }
View Full Code Here


    public SessionItemStateManager(
            NodeId rootNodeId, LocalItemStateManager stateMgr) {
        this.stateMgr = stateMgr;

        // create hierarchy manager that uses both transient and persistent state
        hierMgr = new CachingHierarchyManager(rootNodeId, this);
        addListener(hierMgr);
    }
View Full Code Here

        this.stateMgr = stateMgr;
        stateMgr.addListener(this);

        // create hierarchy manager that uses both transient and persistent state
        hierMgr = new CachingHierarchyManager(rootNodeId, this, resolver);
        addListener(hierMgr);

        this.ntReg = ntReg;
    }
View Full Code Here

        this.stateMgr = stateMgr;
        stateMgr.addListener(this);

        // create hierarchy manager that uses both transient and persistent state
        hierMgr = new CachingHierarchyManager(rootNodeId, this, resolver);
        addListener(hierMgr);
    }
View Full Code Here

                               NamespaceRegistryImpl nsRegistry,
                               QueryHandler parentHandler,
                               NodeId excludedNodeId) {
        this.fs = fs;
        this.stateMgr = stateMgr;
        this.hmgr = new CachingHierarchyManager(rootId, stateMgr);
        this.stateMgr.addListener(hmgr);
        this.pm = pm;
        this.rootId = rootId;
        this.ntRegistry = ntRegistry;
        this.nsRegistry = nsRegistry;
View Full Code Here

        atticStore = new ItemStateMap();

        this.stateMgr = stateMgr;

        // create hierarchy manager that uses both transient and persistent state
        hierMgr = new CachingHierarchyManager(rootNodeId, this);
        addListener(hierMgr);

        this.ntReg = ntReg;
    }
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.core.CachingHierarchyManager

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.