KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sslexplorer > extensions > types > PluginDatabase


1 package com.sslexplorer.extensions.types;
2
3 import com.sslexplorer.core.CoreServlet;
4 import com.sslexplorer.core.Database;
5
6 public interface PluginDatabase extends Database {
7
8     /**
9      * Open and initialise the database.
10      *
11      * @param controllingServlet controlling servlet
12      * @param def the plugin definition
13      * @throws Exception on any error
14      */

15     public void open(CoreServlet controllingServlet, PluginDefinition def) throws Exception JavaDoc;
16
17 }
18
Popular Tags