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 servlet12 * @param def the plugin definition13 * @throws Exception on any error14 */15 public void open(CoreServlet controllingServlet, PluginDefinition def) throws Exception ;16 17 }18