com.capitalone.dashboard.request.SecurityReviewAuditRequest 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 com.capitalone.dashboard.model.CodeQualityType;
import javax.validation.constraints.NotNull;
public class SecurityReviewAuditRequest extends AuditReviewRequest {
@NotNull
private String appASV;
@NotNull
private String component;
private CodeQualityType type;
public CodeQualityType getType() {
return type;
}
public void setType(CodeQualityType type) {
this.type = type;
}
public String getAppASV() {
return appASV;
}
public void setAppASV(String appASV) {
this.appASV = appASV;
}
public String getComponent() {
return component;
}
public void setComponent(String component) {
this.component = component;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy