Commit 265d0c27 authored by Greg Messner's avatar Greg Messner
Browse files

Initial commit (#547)

parent 5fb7efba
package org.gitlab4j.api.models;
import java.util.Date;
import org.gitlab4j.api.Constants.PipelineOrderBy;
import org.gitlab4j.api.Constants.PipelineScope;
import org.gitlab4j.api.Constants.SortOrder;
import org.gitlab4j.api.GitLabApiForm;
import com.fasterxml.jackson.annotation.JsonIgnore;
/**
* This class is used to filter Pipelines when getting lists of them.
*/
public class PipelineFilter {
/** {@link org.gitlab4j.api.Constants.PipelineScope} The scope of pipelines, one of: running, pending, finished, branches, tags */
private PipelineScope scope;
/** {@link org.gitlab4j.api.Constants.PipelineScope} The status of pipelines, one of: running, pending, success, failed, canceled, skipped, created */
private PipelineStatus status;
/** The ref of pipelines. */
private String ref;
/** The SHA of pipelines. */
private String sha;
/** If true, returns pipelines with invalid configurations. */
private Boolean yamlErrors;
/** The name of the user who triggered pipelines. */
private String name;
/** The username of the user who triggered pipelines */
private String username;
/** Return pipelines updated after the specified date. */
private Date updatedAfter;
/** Return pipelines updated before the specified date. */
private Date updatedBefore;
/**
* {@link org.gitlab4j.api.Constants.PipelineOrderBy} Order pipelines by id, status, ref, updated_at or user_id (default: id).
*/
private PipelineOrderBy orderBy;
/**
* {@link org.gitlab4j.api.Constants.SortOrder} Return issues sorted in asc or desc order. Default is desc.
*/
private SortOrder sort;
public void setScope(PipelineScope scope) {
this.scope = scope;
}
public void setStatus(PipelineStatus status) {
this.status = status;
}
public void setRef(String ref) {
this.ref = ref;
}
public void setSha(String sha) {
this.sha = sha;
}
public void setYamlErrors(Boolean yamlErrors) {
this.yamlErrors = yamlErrors;
}
public void setName(String name) {
this.name = name;
}
public void setUsername(String username) {
this.username = username;
}
public void setUpdatedAfter(Date updatedAfter) {
this.updatedAfter = updatedAfter;
}
public void setUpdatedBefore(Date updatedBefore) {
this.updatedBefore = updatedBefore;
}
public void setOrderBy(PipelineOrderBy orderBy) {
this.orderBy = orderBy;
}
public void setSort(SortOrder sort) {
this.sort = sort;
}
public PipelineFilter withScope(PipelineScope scope) {
this.scope = scope;
return this;
}
public PipelineFilter withStatus(PipelineStatus status) {
this.status = status;
return this;
}
public PipelineFilter withRef(String ref) {
this.ref = ref;
return this;
}
public PipelineFilter withSha(String sha) {
this.sha = sha;
return this;
}
public PipelineFilter withYamlErrors(Boolean yamlErrors) {
this.yamlErrors = yamlErrors;
return this;
}
public PipelineFilter withName(String name) {
this.name = name;
return this;
}
public PipelineFilter withUsername(String username) {
this.username = username;
return this;
}
public PipelineFilter withUpdatedAfter(Date updatedAfter) {
this.updatedAfter = updatedAfter;
return this;
}
public PipelineFilter withUpdatedBefore(Date updatedBefore) {
this.updatedBefore = updatedBefore;
return this;
}
public PipelineFilter withOrderBy(PipelineOrderBy orderBy) {
this.orderBy = orderBy;
return this;
}
public PipelineFilter withSort(SortOrder sort) {
this.sort = sort;
return this;
}
@JsonIgnore
public GitLabApiForm getQueryParams() {
return (new GitLabApiForm()
.withParam("scope", scope)
.withParam("status", status)
.withParam("ref", ref)
.withParam("sha", sha)
.withParam("yaml_errors", yamlErrors)
.withParam("name", name)
.withParam("username", username)
.withParam("updated_after", updatedAfter)
.withParam("updated_before", updatedBefore)
.withParam("order_by", orderBy)
.withParam("sort", sort));
}
}
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