collectionmanagementservice.java

来自「Java的面向对象数据库系统的源代码」· Java 代码 · 共 27 行

JAVA
27
字号
/*
 * CollectionManagementService.java
 *
 * Created on den 18 juni 2001, 12:20
 */

package org.xmldb.api.modules;

import org.xmldb.api.base.Service;
import org.xmldb.api.base.XMLDBException;
import org.xmldb.api.base.Collection;

/**
 *
 * @author  Kimbro Staken, Per Nyfelt
 * @version 0.1
 */
public interface CollectionManagementService extends Service {

   /** Create a new basic collection */
   Collection createCollection( String name ) throws XMLDBException;

   /** Remove the named collection */
   void removeCollection( String name ) throws XMLDBException;   

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?