forked from usdot-jpo-ode/jpo-cvmanager
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding roadRegulatorId to APIs and fixing infinite live data loop
- Loading branch information
Showing
4 changed files
with
198 additions
and
162 deletions.
There are no files selected for viewing
Submodule jpo-conflictmonitor
updated
from e8187d to 8b615d
8 changes: 4 additions & 4 deletions
8
...sualizer-api/src/main/java/us/dot/its/jpo/ode/api/accessors/reports/ReportRepository.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
package us.dot.its.jpo.ode.api.accessors.reports; | ||
|
||
|
||
import java.util.List; | ||
|
||
import org.springframework.data.mongodb.core.query.Query; | ||
import us.dot.its.jpo.ode.api.models.DataLoader; | ||
import us.dot.its.jpo.ode.api.models.ReportDocument; | ||
|
||
public interface ReportRepository extends DataLoader<ReportDocument>{ | ||
Query getQuery(String reportName, Integer intersectionID, String roadRegulatorID, Long startTime, Long endTime, boolean includeReportContents, boolean latest); | ||
public interface ReportRepository extends DataLoader<ReportDocument> { | ||
Query getQuery(String reportName, Integer intersectionID, Integer roadRegulatorID, Long startTime, Long endTime, | ||
boolean includeReportContents, boolean latest); | ||
|
||
long getQueryResultCount(Query query); | ||
|
||
List<ReportDocument> find(Query query); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.