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.
Merge branch 'develop' into keycloak-refactor
- Loading branch information
Showing
40 changed files
with
916 additions
and
113 deletions.
There are no files selected for viewing
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
Submodule jpo-conflictmonitor
deleted from
88afe5
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
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 |
---|---|---|
@@ -0,0 +1,67 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<settings> | ||
<activeProfiles> | ||
<activeProfile>default</activeProfile> | ||
</activeProfiles> | ||
<servers> | ||
<server> | ||
<id>github</id> | ||
<username>jpo_conflictvisualizer</username> | ||
<password>${env.MAVEN_GITHUB_TOKEN}</password> | ||
</server> | ||
<server> | ||
<id>github_jpo_ode</id> | ||
<username>jpo_conflictvisualizer</username> | ||
<password>${env.MAVEN_GITHUB_TOKEN}</password> | ||
</server> | ||
<server> | ||
<id>github_jpo_geojsonconverter</id> | ||
<username>jpo_conflictvisualizer</username> | ||
<password>${env.MAVEN_GITHUB_TOKEN}</password> | ||
</server> | ||
<server> | ||
<id>github_jpo_conflictmonitor</id> | ||
<username>jpo_conflictvisualizer</username> | ||
<password>${env.MAVEN_GITHUB_TOKEN}</password> | ||
</server> | ||
</servers> | ||
<profiles> | ||
<profile> | ||
<id>default</id> | ||
<repositories> | ||
<repository> | ||
<id>github</id> | ||
<name>GitHub Apache Maven Packages</name> | ||
<url>https://maven.pkg.github.com/${env.MAVEN_GITHUB_ORG}/jpo-ode</url> | ||
<snapshots> | ||
<enabled>false</enabled> | ||
</snapshots> | ||
</repository> | ||
<repository> | ||
<id>github_jpo_ode</id> | ||
<name>GitHub JPO ODE</name> | ||
<url>https://maven.pkg.github.com/${env.MAVEN_GITHUB_ORG}/jpo-ode</url> | ||
<snapshots> | ||
<enabled>false</enabled> | ||
</snapshots> | ||
</repository> | ||
<repository> | ||
<id>github_jpo_geojsonconverter</id> | ||
<name>GitHub JPO GeojsonConverter</name> | ||
<url>https://maven.pkg.github.com/${env.MAVEN_GITHUB_ORG}/jpo-geojsonconverter</url> | ||
<snapshots> | ||
<enabled>false</enabled> | ||
</snapshots> | ||
</repository> | ||
<repository> | ||
<id>github_jpo_conflictmonitor</id> | ||
<name>GitHub JPO ConflictMonitor</name> | ||
<url>https://maven.pkg.github.com/${env.MAVEN_GITHUB_ORG}/jpo-conflictmonitor</url> | ||
<snapshots> | ||
<enabled>false</enabled> | ||
</snapshots> | ||
</repository> | ||
</repositories> | ||
</profile> | ||
</profiles> | ||
</settings> |
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
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
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
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
20 changes: 20 additions & 0 deletions
20
.../BsmMessageCountProgressionEventRepository/BsmMessageCountProgressionEventRepository.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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package us.dot.its.jpo.ode.api.accessors.events.BsmMessageCountProgressionEventRepository; | ||
|
||
import java.util.List; | ||
|
||
import org.springframework.data.mongodb.core.query.Query; | ||
import us.dot.its.jpo.ode.api.models.IDCount; | ||
import us.dot.its.jpo.ode.api.models.DataLoader; | ||
import us.dot.its.jpo.conflictmonitor.monitor.models.events.BsmMessageCountProgressionEvent; | ||
|
||
public interface BsmMessageCountProgressionEventRepository extends DataLoader<BsmMessageCountProgressionEvent>{ | ||
Query getQuery(Integer intersectionID, Long startTime, Long endTime, boolean latest); | ||
|
||
long getQueryResultCount(Query query); | ||
|
||
long getQueryFullCount(Query query); | ||
|
||
List<BsmMessageCountProgressionEvent> find(Query query); | ||
|
||
List<IDCount> getBsmBroadcastRateEventsByDay(int intersectionID, Long startTime, Long endTime); | ||
} |
Oops, something went wrong.