/* * Copyright (C) 2009 eXo Platform SAS. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.exoplatform.services.jcr.core; import org.exoplatform.services.jcr.core.nodetype.NodeTypeDataManager; import java.io.IOException; import java.io.InputStream; import java.util.Map; import javax.jcr.InvalidSerializedDataException; import javax.jcr.ItemExistsException; import javax.jcr.PathNotFoundException; import javax.jcr.RepositoryException; import javax.jcr.Workspace; import javax.jcr.nodetype.ConstraintViolationException; /** * ExtendedWorkspace extends Workspace interface provide import function. * * @author <a href="mailto:Sergey.Kabashnyuk@gmail.com">Sergey Kabashnyuk</a> * @version $Id: ExtendedWorkspace.java 12649 2008-04-02 12:46:37Z ksm $ * @LevelAPI Experimental */ public interface ExtendedWorkspace extends Workspace { /** * Deserializes an XML document and adds the resulting item subtree as a child of the node at * parentAbsPath. * * @param parentAbsPath * the absolute path of the node below which the deserialized subtree is added. * @param in * The <code>Inputstream</code> from which the XML to be deserilaized is read. * @param uuidBehavior * a four-value flag that governs how incoming UUIDs are handled. * @param context * @throws IOException * @throws PathNotFoundException * @throws ItemExistsException * @throws ConstraintViolationException * @throws InvalidSerializedDataException * @throws RepositoryException */ void importXML(String parentAbsPath, InputStream in, int uuidBehavior, Map<String, Object> context) throws IOException, PathNotFoundException, ItemExistsException, ConstraintViolationException, InvalidSerializedDataException, RepositoryException; /** * Returns {@link NodeTypeDataManager} instance * * @return NodeTypeDataManager * @throws RepositoryException */ NodeTypeDataManager getNodeTypesHolder() throws RepositoryException; }