1 23 package org.hammurapi; 24 25 import java.sql.SQLException ; 26 import java.util.Properties ; 27 28 import com.pavelvlasov.sql.SQLProcessor; 29 30 34 public interface Inspector { 35 void setContext(InspectorContext context); 36 void unSetContext(); 37 InspectorContext getContext(); 38 void init() throws HammurapiException; 39 void destroy(); 40 41 44 String getConfigInfo(); 45 46 54 void initDb(SQLProcessor processor, Properties dbProperties) throws SQLException ; 55 } 56 | Popular Tags |