try {
String type = PLUGIN_TYPES[currImpl];
this.glob.getProperty().set("cb.queue.persistent.tableNamePrefix", "TEST");
QueuePluginManager pluginManager = new QueuePluginManager(glob);
PluginInfo pluginInfo = new PluginInfo(glob, pluginManager, "JDBC", "1.0");
java.util.Properties prop = (java.util.Properties)pluginInfo.getParameters();
prop.put("tableNamePrefix", "TEST");
prop.put("entriesTableName", "_entries");
this.glob.getProperty().set("QueuePlugin[JDBC][1.0]", pluginInfo.dumpPluginParameters());
pluginInfo = new PluginInfo(glob, pluginManager, type, "1.0");
StorageId queueId = new StorageId(glob, Constants.RELATING_CALLBACK, "SomeQueueId");
this.queue = pluginManager.getPlugin(pluginInfo, queueId, new CbQueueProperty(this.glob, Constants.RELATING_CALLBACK, this.glob.getStrippedId()));
this.queue.shutdown(); // to allow to initialize again
}
catch (Exception ex) {