|
@@ -1,2 +1,36 @@
|
1
|
1
|
public class Id {
|
|
2
|
+
|
|
3
|
+ private String userId;
|
|
4
|
+ private String name;
|
|
5
|
+ private String githubId;
|
|
6
|
+
|
|
7
|
+ public Id(String userId, String name, String githubId) {
|
|
8
|
+ this.userId = userId;
|
|
9
|
+ this.name = name;
|
|
10
|
+ this.githubId = githubId;
|
|
11
|
+ }
|
|
12
|
+
|
|
13
|
+ public String getUserId() {
|
|
14
|
+ return userId;
|
|
15
|
+ }
|
|
16
|
+
|
|
17
|
+ public void setUserId(String userId) {
|
|
18
|
+ this.userId = userId;
|
|
19
|
+ }
|
|
20
|
+
|
|
21
|
+ public String getName() {
|
|
22
|
+ return name;
|
|
23
|
+ }
|
|
24
|
+
|
|
25
|
+ public void setName(String name) {
|
|
26
|
+ this.name = name;
|
|
27
|
+ }
|
|
28
|
+
|
|
29
|
+ public String getGithubId() {
|
|
30
|
+ return githubId;
|
|
31
|
+ }
|
|
32
|
+
|
|
33
|
+ public void setGithubId(String githubId) {
|
|
34
|
+ this.githubId = githubId;
|
|
35
|
+ }
|
2
|
36
|
}
|