01: /*
02: * CollectionManagementService.java
03: *
04: * Created on den 18 juni 2001, 12:20
05: */
06:
07: package org.xmldb.api.modules;
08:
09: 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 name) throws XMLDBException;
22:
23: /** Remove the named collection */
24: void removeCollection(String name) throws XMLDBException;
25:
26: }
|