-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathUserPojo.java
More file actions
57 lines (45 loc) · 1.22 KB
/
UserPojo.java
File metadata and controls
57 lines (45 loc) · 1.22 KB
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
/*
* 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 techquiz.dto;
/**
*
* @author devanshi
*/
public class UserPojo {
private String userId;
private String password;
private String userType;
public UserPojo()
{
}
@Override
public String toString() {
return "UserPojo{" + "userId=" + userId + ", password=" + password + ", userType=" + userType + '}';
}
public UserPojo(String userId, String password, String userType) {
this.userId = userId;
this.password = password;
this.userType = userType;
}
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getUserType() {
return userType;
}
public void setUserType(String userType) {
this.userType = userType;
}
}