/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package Bean; /** * * @author USER */ public class Utilisateur { private int id; private int d_user; private String username; private String password; private String type; public int getId() { return id; } public void setId(int id) { this.id = id; } public int getD_user() { return d_user; } public void setD_user(int d_user) { this.d_user = d_user; } public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public String getType() { return type; } public void setType(String type) { this.type = type; } }