com.capitalone.dashboard.service.CodeReviewAuditService 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.service;
import com.capitalone.dashboard.model.AuditException;
import com.capitalone.dashboard.response.CodeReviewAuditResponse;
import java.util.Collection;
public interface CodeReviewAuditService {
Collection getPeerReviewResponses(String repo, String branch, String scmName, long beginDate, long endDate) throws AuditException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy