com.mntviews.upload.model.ConnectionData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mnt-upload Show documentation
Show all versions of mnt-upload Show documentation
Data upload library for the different types of databases
The newest version!
package com.mntviews.upload.model;
public class ConnectionData {
private final String url;
private final String userName;
private final String password;
public ConnectionData(String url, String userName, String password) {
this.url = url;
this.userName = userName;
this.password = password;
}
public String getUrl() {
return url;
}
public String getUserName() {
return userName;
}
public String getPassword() {
return password;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy