| 1 | package icu.secnotes.pojo; |
| 2 | |
| 3 | public class User { |
| 4 | private Integer id; |
| 5 | private String username; |
| 6 | private String password; |
| 7 | private String name; |
| 8 | |
| 9 | public Integer getId() { |
| 10 | return id; |
| 11 | } |
| 12 | |
| 13 | public void setId(Integer id) { |
| 14 | this.id = id; |
| 15 | } |
| 16 | |
| 17 | public String getUsername() { |
| 18 | return username; |
| 19 | } |
| 20 | |
| 21 | public void setUsername(String username) { |
| 22 | this.username = username; |
| 23 | } |
| 24 | |
| 25 | public String getPassword() { |
| 26 | return password; |
| 27 | } |
| 28 | |
| 29 | public void setPassword(String password) { |
| 30 | this.password = password; |
| 31 | } |
| 32 | |
| 33 | public String getName() { |
| 34 | return name; |
| 35 | } |
| 36 | |
| 37 | public void setName(String name) { |
| 38 | this.name = name; |
| 39 | } |
| 40 | |
| 41 | @Override |
| 42 | public String toString() { |
| 43 | return "User{" + |
| 44 | "id=" + id + |
| 45 | ", username='" + username + '\'' + |
| 46 | ", password='" + password + '\'' + |
| 47 | ", name='" + name + '\'' + |
| 48 | '}'; |
| 49 | } |
| 50 | } |
nothing calls this directly
no outgoing calls
no test coverage detected