Neuer Constructor für DBProfile

thobaben_serialize
Harald Wolff 2015-02-11 19:09:21 +01:00
parent 74d159a23f
commit 33562be436
1 changed files with 9 additions and 0 deletions

View File

@ -19,6 +19,15 @@ public class DBProfile
this.setProfileno(profileno);
load(pref);
}
public DBProfile(String hostname,Integer port,String dbname,String username,String password){
this.hostname = hostname;
this.port = port;
this.database = dbname;
this.username = username;
this.password = password;
}
public int getProfileno() {
return profileno;