1 18 package org.apache.geronimo.console.databasemanager.wizard; 19 20 import org.apache.geronimo.kernel.repository.Artifact; 21 22 28 public interface DatabaseDriver { 29 String getName(); 30 String getURLPrototype(); 31 String [] getURLParameters(); 32 String getDriverClassName(); 33 int getDefaultPort(); 34 boolean isXA(); 35 Artifact getRAR(); 36 } 37 | Popular Tags |