Commit 66741875 authored by Greg Messner's avatar Greg Messner
Browse files

Added missing fields (#154).

parent 91a0ec45
......@@ -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;
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment