Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
佳 邓
Gitlab4j Api
Commits
66741875
Commit
66741875
authored
Mar 13, 2018
by
Greg Messner
Browse files
Added missing fields (#154).
parent
91a0ec45
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/gitlab4j/api/models/RunnerDetail.java
View file @
66741875
...
...
@@ -7,13 +7,17 @@ import org.gitlab4j.api.utils.JacksonJsonEnumHelper;
import
javax.xml.bind.annotation.XmlAccessType
;
import
javax.xml.bind.annotation.XmlAccessorType
;
import
javax.xml.bind.annotation.XmlRootElement
;
import
java.util.Date
;
import
java.util.List
;
@XmlRootElement
@XmlAccessorType
(
XmlAccessType
.
FIELD
)
public
class
RunnerDetail
extends
Runner
{
private
String
architecture
;
private
String
platform
;
private
Date
contactedAt
;
private
List
<
Project
>
projects
;
private
String
token
;
private
String
revision
;
...
...
@@ -46,6 +50,14 @@ public class RunnerDetail extends Runner {
}
}
public
String
getArchitecture
()
{
return
architecture
;
}
public
void
setArchitecture
(
String
architecture
)
{
this
.
architecture
=
architecture
;
}
public
String
getPlatform
()
{
return
this
.
platform
;
}
...
...
@@ -54,6 +66,14 @@ public class RunnerDetail extends Runner {
this
.
platform
=
platform
;
}
public
Date
getContactedAt
()
{
return
contactedAt
;
}
public
void
setContactedAt
(
Date
contactedAt
)
{
this
.
contactedAt
=
contactedAt
;
}
public
List
<
Project
>
getProjects
()
{
return
this
.
projects
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment