Package org.exist.performance.actions

Source Code of org.exist.performance.actions.RemoveCollection

/*
*  eXist Open Source Native XML Database
*  Copyright (C) 2001-06 The eXist Project
*  http://exist-db.org
*  This program 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
*  of the License, or (at your option) any later version.
*  This program 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 program; if not, write to the Free Software
*  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*  $Id$
*/
package org.exist.performance.actions;

import org.exist.EXistException;
import org.exist.performance.Connection;
import org.exist.performance.Runner;
import org.exist.performance.AbstractAction;
import org.w3c.dom.Element;
import org.xmldb.api.base.Collection;
import org.xmldb.api.base.XMLDBException;
import org.xmldb.api.modules.CollectionManagementService;

public class RemoveCollection extends AbstractAction {

    private String collectionPath;
    private String parentPath;

    public void configure(Runner runner, Action parent, Element config) throws EXistException {
        super.configure(runner, parent, config);
        System.out.println(config.getNodeName());
        if (!config.hasAttribute("parent"))
            throw new EXistException(RemoveCollection.class.getName() + " requires an attribute 'parent'");
        parentPath = config.getAttribute("parent");
        if (!config.hasAttribute("collection"))
            throw new EXistException(RemoveCollection.class.getName() + " requires an attribute 'collection'");
        collectionPath = config.getAttribute("collection");
    }

    public void execute(Connection connection) throws XMLDBException, EXistException {
        Collection collection = connection.getCollection(parentPath);
        if (collection == null)
            throw new EXistException(RemoveCollection.class.getName() + ": collection " + parentPath + " not found");
        CollectionManagementService mgr = (CollectionManagementService)
                collection.getService("CollectionManagementService", "1.0");
        mgr.removeCollection(collectionPath);
    }
}
TOP

Related Classes of org.exist.performance.actions.RemoveCollection

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.