1 23 package org.hammurapi; 24 25 import com.pavelvlasov.persistence.Storage; 26 import com.pavelvlasov.sql.SQLProcessor; 27 import com.pavelvlasov.util.Attributable; 28 29 33 public interface Session extends Attributable { 34 InspectorContext getContext(String inspectorName); 35 36 41 void disable(Inspector inspector); 42 43 48 SQLProcessor getProcessor(); 49 50 54 String [] getClassPath(); 55 56 60 Storage getStorage(); 61 } 62 | Popular Tags |