1 /*2 * CollectionManagementService.java3 *4 * Created on den 18 juni 2001, 12:205 */6 7 package org.xmldb.api.modules;8 9 import org.xmldb.api.base.Service;10 import org.xmldb.api.base.XMLDBException;11 import org.xmldb.api.base.Collection;12 13 /**14 *15 * @author Kimbro Staken, Per Nyfelt16 * @version 0.117 */18 public interface CollectionManagementService extends Service {19 20 /** Create a new basic collection */21 Collection createCollection( String name ) throws XMLDBException;22 23 /** Remove the named collection */24 void removeCollection( String name ) throws XMLDBException; 25 26 }27