-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUserBean.java
More file actions
50 lines (38 loc) · 748 Bytes
/
UserBean.java
File metadata and controls
50 lines (38 loc) · 748 Bytes
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
package mnregapkg;
public class UserBean {
private int userid;
private String username;
private String password;
private String name;
private String email;
public void setuserid(int id){
this.userid=id;
}
public int getuserid(){
return this.userid;
}
public void setusername(String usrname){
this.username=usrname;
}
public String getusername(){
return this.username;
}
public void setpassword(String pwd){
this.password=pwd;
}
public String getpassword(){
return this.password;
}
public void setname(String name){
this.name=name;
}
public String getname(){
return this.name;
}
public void setemail(String email){
this.email=email;
}
public String getemail(){
return this.email;
}
}