-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathAdmin.java
More file actions
47 lines (40 loc) · 830 Bytes
/
Admin.java
File metadata and controls
47 lines (40 loc) · 830 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
//-----------IT17045940
//-----------Dias A.M.A.P.
//-----------G-1.2
public class Admin {
private String username;
private String mobile;
private String email;
private String address;
private String password;
public String getUsername() {
return username;
}
public void setUsername(String adminname) {
this.username = adminname;
}
public String getMobile() {
return mobile;
}
public void setMobile(String mobile) {
this.mobile = mobile;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
}