com.capitalone.dashboard.response.InfrastructureAuditResponse 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.response;
import com.capitalone.dashboard.model.InfrastructureScan;
import com.capitalone.dashboard.status.InfrastructureAuditStatus;
import java.util.List;
public class InfrastructureAuditResponse extends AuditReviewResponse {
private String url;
private long lastExecutionTime;
private List infrastructureScans;
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public long getLastExecutionTime() {
return lastExecutionTime;
}
public void setLastExecutionTime(long lastExecutionTime) {
this.lastExecutionTime = lastExecutionTime;
}
public List getInfrastructureScans() {
return infrastructureScans;
}
public void setInfrastructureScans(List infrastructureScans) {
this.infrastructureScans = infrastructureScans;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy