MCPcopy Create free account
hub / github.com/bansh2eBreak/SpringVulnBoot-backend / User

Class User

src/main/java/icu/secnotes/pojo/User.java:3–50  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package icu.secnotes.pojo;
2
3public 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected