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

Add httpUrl property

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