01: package net.sourceforge.squirrel_sql.client.session;
02:
03: import net.sourceforge.squirrel_sql.fw.sql.ISQLConnection;
04: import net.sourceforge.squirrel_sql.client.gui.db.SQLAlias;
05: import net.sourceforge.squirrel_sql.client.gui.db.ISQLAliasExt;
06:
07: public interface IAllowedSchemaChecker {
08: /**
09: * There is no need to cache allowed Schemas in a Plugin.
10: * Session Manager already does this.
11: */
12: String[] getAllowedSchemas(ISQLConnection con, ISQLAliasExt alias);
13: }
|