File tree 1 file changed +20
-0
lines changed
src/main/java/org/gitlab4j/api/models
1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change 7
7
import javax .xml .bind .annotation .XmlAccessType ;
8
8
import javax .xml .bind .annotation .XmlAccessorType ;
9
9
import javax .xml .bind .annotation .XmlRootElement ;
10
+
11
+ import java .util .Date ;
10
12
import java .util .List ;
11
13
12
14
@ XmlRootElement
13
15
@ XmlAccessorType (XmlAccessType .FIELD )
14
16
public class RunnerDetail extends Runner {
15
17
18
+ private String architecture ;
16
19
private String platform ;
20
+ private Date contactedAt ;
17
21
private List <Project > projects ;
18
22
private String token ;
19
23
private String revision ;
@@ -46,6 +50,14 @@ public String toString() {
46
50
}
47
51
}
48
52
53
+ public String getArchitecture () {
54
+ return architecture ;
55
+ }
56
+
57
+ public void setArchitecture (String architecture ) {
58
+ this .architecture = architecture ;
59
+ }
60
+
49
61
public String getPlatform () {
50
62
return this .platform ;
51
63
}
@@ -54,6 +66,14 @@ public void setPlatform(String platform) {
54
66
this .platform = platform ;
55
67
}
56
68
69
+ public Date getContactedAt () {
70
+ return contactedAt ;
71
+ }
72
+
73
+ public void setContactedAt (Date contactedAt ) {
74
+ this .contactedAt = contactedAt ;
75
+ }
76
+
57
77
public List <Project > getProjects () {
58
78
return this .projects ;
59
79
}
You can’t perform that action at this time.
0 commit comments