Commit 75a81fc2 authored by Gregoire Seux's avatar Gregoire Seux

Add httpUrl property

parent 7c751341
...@@ -39,6 +39,9 @@ public class GitlabProject { ...@@ -39,6 +39,9 @@ public class GitlabProject {
@JsonProperty("ssh_url_to_repo") @JsonProperty("ssh_url_to_repo")
private String _sshUrl; private String _sshUrl;
@JsonProperty("http_url_to_repo")
private String _httpUrl;
private GitlabNamespace _namespace; private GitlabNamespace _namespace;
public Integer getId() { public Integer getId() {
...@@ -145,6 +148,14 @@ public class GitlabProject { ...@@ -145,6 +148,14 @@ public class GitlabProject {
_sshUrl = sshUrl; _sshUrl = sshUrl;
} }
public String getHttpUrl() {
return _httpUrl;
}
public void setHttpUrl(String httpUrl) {
_httpUrl = httpUrl;
}
public GitlabNamespace getNamespace() { public GitlabNamespace getNamespace() {
return _namespace; return _namespace;
} }
......
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