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
|
package com.obia.safe.hibernate;
// Generated 13 oct. 2009 11:34:25 by Hibernate Tools 3.2.4.GA
import java.util.HashSet;
import java.util.Set;
/**
* Utilisateur generated by hbm2java
*/
public class Utilisateur implements java.io.Serializable
{
private String uid;
private String password;
private String nom;
private String telephone;
private String fax;
private String email;
private Set roles = new HashSet(0);
public Utilisateur()
{
}
public Utilisateur(String uid, String nom)
{
this.uid = uid;
this.nom = nom;
}
public Utilisateur(String uid, String password, String nom, String telephone, String fax, String email, Set roles)
{
this.uid = uid;
this.password = password;
this.nom = nom;
this.telephone = telephone;
this.fax = fax;
this.email = email;
this.roles = roles;
}
public String getUid()
{
return this.uid;
}
public void setUid(String uid)
{
this.uid = uid;
}
public String getPassword()
{
return this.password;
}
public void setPassword(String password)
{
this.password = password;
}
public String getNom()
{
return this.nom;
}
public void setNom(String nom)
{
this.nom = nom;
}
public String getTelephone()
{
return this.telephone;
}
public void setTelephone(String telephone)
{
this.telephone = telephone;
}
public String getFax()
{
return this.fax;
}
public void setFax(String fax)
{
this.fax = fax;
}
public String getEmail()
{
return this.email;
}
public void setEmail(String email)
{
this.email = email;
}
public Set getRoles()
{
return this.roles;
}
public void setRoles(Set roles)
{
this.roles = roles;
}
} |
Partager