org.protege.osgi.jdbc.prefs.DriverInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ontop-protege Show documentation
Show all versions of ontop-protege Show documentation
Ontop OBDA plugin for protégé
package org.protege.osgi.jdbc.prefs;
import java.io.File;
public class DriverInfo {
private String description;
private String className;
private File driverLocation;
public DriverInfo(String description, String className, File driverLocation) {
this.description = description;
this.className = className;
this.driverLocation = driverLocation;
}
public String getDescription() {
return description;
}
public String getClassName() {
return className;
}
public File getDriverLocation() {
return driverLocation;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy