com.capitalone.dashboard.response.AuditReviewResponse 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 java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
public class AuditReviewResponse {
private Set auditStatuses = new HashSet<>();
private String errorMessage;
private long lastUpdated;
private Map auditEntity = new HashMap<>();
private String clientReference;
public void addAuditStatus(T status) {
auditStatuses.add(status);
}
public void setAuditStatus(Set statuses) {auditStatuses = statuses;}
public Set getAuditStatuses() {
return auditStatuses;
}
public String getErrorMessage() {
return errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
public long getLastUpdated() {
return lastUpdated;
}
public void setLastUpdated(long lastUpdated) {
this.lastUpdated = lastUpdated;
}
public Map getAuditEntity() {
return auditEntity;
}
public void setAuditEntity(Map auditEntity) {
this.auditEntity = auditEntity;
}
public String getClientReference() { return clientReference; }
public void setClientReference(String clientReference) { this.clientReference = clientReference; }
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy