Package org.apache.jackrabbit.core

Source Code of org.apache.jackrabbit.core.XAItemManager

/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements.  The ASF licenses this file to You
* under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.jackrabbit.core;

import org.apache.jackrabbit.core.state.ItemStateManager;
import org.apache.jackrabbit.core.state.NodeState;
import org.apache.jackrabbit.core.version.AbstractVersion;
import org.apache.jackrabbit.core.version.AbstractVersionHistory;
import org.apache.jackrabbit.core.version.InternalVersion;
import org.apache.jackrabbit.core.version.InternalVersionHistory;
import org.apache.jackrabbit.core.version.XAVersion;
import org.apache.jackrabbit.core.version.XAVersionHistory;

import javax.jcr.RepositoryException;
import javax.jcr.nodetype.NodeDefinition;

/**
* Extended <code>ItemManager</code> that works in an XA environment.
*/
public class XAItemManager extends ItemManager {

    /**
     * Create a new instance of this class.
     * @param itemStateProvider the item state provider associated with
     *                          the new instance
     * @param session           the session associated with the new instance
     * @param rootNodeDef       the definition of the root node
     * @param rootNodeId        the id of the root node
     */
    protected XAItemManager(ItemStateManager itemStateProvider, HierarchyManager hierMgr,
                SessionImpl session, NodeDefinition rootNodeDef,
                NodeId rootNodeId) {

        super(itemStateProvider, hierMgr, session, rootNodeDef, rootNodeId);
    }

    /**
     * {@inheritDoc}
     */
    protected AbstractVersion createVersionInstance(
            NodeId id, NodeState state, NodeDefinition def,
            ItemLifeCycleListener[] listeners) throws RepositoryException {

        InternalVersion version =
                session.getVersionManager().getVersion(id);
        return new XAVersion(this, session, id, state, def, listeners, version);
    }

    /**
     * {@inheritDoc}
     */
    protected AbstractVersionHistory createVersionHistoryInstance(
            NodeId id, NodeState state, NodeDefinition def,
            ItemLifeCycleListener[] listeners) throws RepositoryException {

        InternalVersionHistory history =
                session.getVersionManager().getVersionHistory(id);
        return new XAVersionHistory(this, session, id, state, def, listeners, history);
    }
}
TOP

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

TOP
Copyright © 2018 www.massapi.com. 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.