1 24 25 package org.objectweb.cjdbc.scenario.tools.components; 26 27 34 public interface ComponentInterface 35 { 36 41 void start() throws Exception ; 42 43 48 String getDatabase(); 49 50 56 void loadDatabase(String file) throws Exception ; 57 58 63 void loadDatabase() throws Exception ; 64 65 72 void loadDatabase(String xml, String targetDB) throws Exception ; 73 74 79 String getPort(); 80 81 86 Object getProcess(); 87 88 91 void release(); 92 } | Popular Tags |