org.gitlab.api.models.GitlabPipeline Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-gitlab-api Show documentation
Show all versions of java-gitlab-api Show documentation
A Java wrapper for the Gitlab Git Hosting Server API
package org.gitlab.api.models;
import com.fasterxml.jackson.annotation.JsonProperty;
public class GitlabPipeline {
public static final String URL = "/pipelines";
@JsonProperty("id")
private Integer id;
@JsonProperty("ref")
private String ref;
@JsonProperty("sha")
private String sha;
@JsonProperty("status")
private String status;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getRef() {
return ref;
}
public void setRef(String ref) {
this.ref = ref;
}
public String getSha() {
return sha;
}
public void setSha(String sha) {
this.sha = sha;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy