com.capitalone.dashboard.request.CodeReviewAuditRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-audit Show documentation
Show all versions of api-audit Show documentation
Hygieia Audit Rest API Layer
package com.capitalone.dashboard.request;
import javax.validation.constraints.NotNull;
import io.swagger.annotations.ApiModelProperty;
public class CodeReviewAuditRequest extends AuditReviewRequest {
@ApiModelProperty(value = "Repo Description", example="https://github.com/somerepo")
@NotNull
private String repo;
@ApiModelProperty(value = "Branch Description", example="master")
@NotNull
private String branch;
@ApiModelProperty(value = "SCM Name", example="GitHub")
private String scmName;
public String getRepo() {
return repo;
}
public void setRepo(String repo) {
this.repo = repo;
}
public String getBranch() {
return branch;
}
public void setBranch(String branch) {
this.branch = branch;
}
public String getScmName() {
return scmName;
}
public void setScmName(String scmName) {
this.scmName = scmName;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy