All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.protege.osgi.jdbc.prefs.DriverInfo Maven / Gradle / Ivy

There is a newer version: 5.2.1.1
Show newest version
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