com.capitalone.dashboard.repository.FortifyScanRepository Maven / Gradle / Ivy
package com.capitalone.dashboard.repository;
import com.capitalone.dashboard.model.FortifyScanReport;
import org.bson.types.ObjectId;
import java.util.List;
public interface FortifyScanRepository extends QueryRepository{
FortifyScanReport findByCollectorItemIdAndTimestamp(ObjectId collectorItemId, long timestamp);
List findByCollectorItemId(ObjectId id);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy