1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
|
package commun.Dao;
import java.util.*;
public class Bdds {
private Integer idBdd;
private String nomBdd;
private String adresseIp;
private String numeroPort;
private String login;
private String password;
private String driver;
private Projets projets;
private Set<Tabless> tabless = new HashSet<Tabless> ();
public Bdds() {
super();
}
public boolean equals(Object value) {
//TODO Implement equals() using Business key equality.
return super.equals(value);
}
public int hashCode() {
//TODO Implement hashCode() using Business key equality.
return super.hashCode();
}
public String toString() {
//TODO Implement toString().
return super.toString();
}
public Integer getIdBdd() {
return this.idBdd;
}
public void setIdBdd(Integer value) {
this.idBdd = value;
}
public String getNomBdd() {
return this.nomBdd;
}
public void setNomBdd(String value) {
this.nomBdd = value;
}
public String getAdresseIp() {
return this.adresseIp;
}
public void setAdresseIp(String value) {
this.adresseIp = value;
}
public String getNumeroPort() {
return this.numeroPort;
}
public void setNumeroPort(String value) {
this.numeroPort = value;
}
public String getLogin() {
return this.login;
}
public void setLogin(String value) {
this.login = value;
}
public String getPassword() {
return this.password;
}
public void setPassword(String value) {
this.password = value;
}
public String getDriver() {
return this.driver;
}
public void setDriver(String value) {
this.driver = value;
}
public Set<Tabless> getTabless() {
return tabless;
}
public void setTabless(Set<Tabless> tabless) {
this.tabless = tabless;
}
public Projets getProjets() {
return projets;
}
public void setProjets(Projets projets) {
this.projets = projets;
}
} |