com.capitalone.dashboard.service.AuditResultService 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.AuditResult;
import com.capitalone.dashboard.model.AuditType;
import org.bson.types.ObjectId;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
public interface AuditResultService {
AuditResult getAuditResult(ObjectId id);
Page getAuditResultsAll(Pageable pageable);
Page getAuditResultsByAuditType(AuditType auditType, Pageable pageable);
Iterable getAuditResultsByDBoardTitle(String title);
Iterable getAuditResultsByDBoardTitleAndAuditType(String title, AuditType auditType);
Iterable getAuditResultsByServAndAppNames(String configItemBusServName, String configItemBusAppName);
Iterable getAuditResultsByServAndAppNamesAndAuditType(String configItemBusServName, String configItemBusAppName, AuditType auditType);
Page getAuditResultsByLineOfBusAndAuditType(String lineOfBusiness, AuditType auditType, Pageable pageable);
Page getAuditResultsByLineOfBus(String lineOfBusiness, Pageable pageable);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy