-
Notifications
You must be signed in to change notification settings - Fork 649
Expand file tree
/
Copy pathLogin.java
More file actions
67 lines (50 loc) · 1.37 KB
/
Login.java
File metadata and controls
67 lines (50 loc) · 1.37 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
58
59
60
61
62
63
64
65
66
67
package guru.springframework.api.domain;
import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
public class Login implements Serializable
{
private String username;
private String password;
private String md5;
private String sha1;
private String sha256;
private Map<String, Object> additionalProperties = new HashMap<String, Object>();
private final static long serialVersionUID = 1041720428871730372L;
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getMd5() {
return md5;
}
public void setMd5(String md5) {
this.md5 = md5;
}
public String getSha1() {
return sha1;
}
public void setSha1(String sha1) {
this.sha1 = sha1;
}
public String getSha256() {
return sha256;
}
public void setSha256(String sha256) {
this.sha256 = sha256;
}
public Map<String, Object> getAdditionalProperties() {
return this.additionalProperties;
}
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
}