All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.capitalone.dashboard.request.DashboardAuditRequest Maven / Gradle / Ivy

package com.capitalone.dashboard.request;

import com.capitalone.dashboard.model.AuditType;
import io.swagger.annotations.ApiModelProperty;

import java.util.Set;

public class DashboardAuditRequest extends AuditReviewRequest {
    @ApiModelProperty(value = "Title", example = "coderepofix")
	private String title;
    private String businessService;
    private String businessApplication;
    @ApiModelProperty(value = "Audit Type has one of these values: ALL, CODE_REVIEW, BUILD_REVIEW, CODE_QUALITY, TEST_RESULT, PERF_TEST,ARTIFACT", example = "ALL")
	private Set auditType;


    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public String getBusinessService() {
        return businessService;
    }

    public void setBusinessService(String businessService) {
        this.businessService = businessService;
    }

    public String getBusinessApplication() {
        return businessApplication;
    }

    public void setBusinessApplication(String businessApplication) {
        this.businessApplication = businessApplication;
    }

    public Set getAuditType() {
        return auditType;
    }

    public void setAuditType(Set auditType) {
        this.auditType = auditType;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy