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

com.github.dbunit.rules.configuration.ConnectionConfig Maven / Gradle / Ivy

package com.github.dbunit.rules.configuration;

/**
 * Created by rafael-pestano on 13/09/2016.
 */
public class ConnectionConfig {

    private String driver; //needed by jdbc 3 or below drivers
    private String url;
    private String user;
    private String password;

    public String getDriver() {
        return driver;
    }

    public void setDriver(String driver) {
        this.driver = driver;
    }

    public String getUrl() {
        return url;
    }

    public void setUrl(String url) {
        this.url = url;
    }

    public String getUser() {
        return user;
    }

    public void setUser(String user) {
        this.user = user;
    }

    public String getPassword() {
        return password;
    }

    public void setPassword(String password) {
        this.password = password;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy