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

blade.plugin.sql2o.DBConfig Maven / Gradle / Ivy

package blade.plugin.sql2o;

/**
 * 用于保存数据库元信息
 *
 * @author	biezhi
 * @since	1.0
 */
public class DBConfig {
	
	private String drive;
	private String url;
	private String user;
	private String password;
	
	public DBConfig(String drive, String url, String user, String password) {
		super();
		this.drive = drive;
		this.url = url;
		this.user = user;
		this.password = password;
	}

	public String getDrive() {
		return drive;
	}

	public String getUrl() {
		return url;
	}

	public String getUser() {
		return user;
	}

	public String getPassword() {
		return password;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy