Package org.apache.jackrabbit.oak.jcr.nodetype

Examples of org.apache.jackrabbit.oak.jcr.nodetype.NodeTypeManagerImpl


    public WorkspaceImpl(SessionContext sessionContext, NamespaceRegistry nsRegistry)
            throws RepositoryException {

        this.sessionContext = sessionContext;
        this.nsRegistry = nsRegistry;
        this.nodeTypeManager = new NodeTypeManagerImpl(sessionContext.getNamePathMapper());
    }
View Full Code Here


    private final LockManager lockManager;

    public WorkspaceImpl(SessionDelegate sessionDelegate)
            throws RepositoryException {
        this.sessionDelegate = sessionDelegate;
        this.nodeTypeManager = new NodeTypeManagerImpl(sessionDelegate);
        this.queryManager = new QueryManagerImpl(sessionDelegate);
        this.lockManager = new LockManagerImpl(sessionDelegate.getSession());
    }
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.oak.jcr.nodetype.NodeTypeManagerImpl

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.