KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > xmldb > api > modules > CollectionManagementService


1 /*
2  * CollectionManagementService.java
3  *
4  * Created on den 18 juni 2001, 12:20
5  */

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 Nyfelt
16  * @version 0.1
17  */

18 public interface CollectionManagementService extends Service {
19
20    /** Create a new basic collection */
21    Collection createCollection( String JavaDoc name ) throws XMLDBException;
22
23    /** Remove the named collection */
24    void removeCollection( String JavaDoc name ) throws XMLDBException;
25
26 }
27
Popular Tags