Commit 47a049b8 authored by zaky's avatar zaky

Build variables implementation - http://docs.gitlab.com/ce/api/build_variables.html

parent 48554be4
...@@ -8,6 +8,14 @@ import com.fasterxml.jackson.annotation.JsonProperty; ...@@ -8,6 +8,14 @@ import com.fasterxml.jackson.annotation.JsonProperty;
public class GitlabBuildVariable { public class GitlabBuildVariable {
public final static String URL = "/variables/"; public final static String URL = "/variables/";
public GitlabBuildVariable() {
}
public GitlabBuildVariable(String key, String value) {
this.key = key;
this.value = value;
}
@JsonProperty("key") @JsonProperty("key")
private String key; private String key;
......
Markdown is supported
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