
com.capitalone.dashboard.repository.Monitor2Repository Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hygieia-common Show documentation
Show all versions of hygieia-common Show documentation
Core package shared by API layer and Microservices
The newest version!
package com.capitalone.dashboard.repository;
import com.capitalone.dashboard.model.Monitor2;
import org.bson.types.ObjectId;
import org.springframework.stereotype.Component;
import java.util.List;
@Component
public interface Monitor2Repository extends QueryRepository {
/**
* Find all {@link Monitor2}s for a given {@link com.capitalone.dashboard.model.Dashboard}.
*
* @param dashboardId dashboard id
* @return list of {@link Monitor2}s
*/
List findByDashboardId(ObjectId dashboardId);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy