Interface PlatformEventRepository

    • Method Detail

      • findDistinctUsers

        @Query("select distinct(e.user) from PlatformEvent e order by e.user")
        List<String> findDistinctUsers()
      • findDistinctApplications

        @Query("select distinct(e.application) from PlatformEvent e order by e.application")
        List<String> findDistinctApplications()
      • findDistinctOrigins

        @Query("select distinct(e.origin) from PlatformEvent e order by e.origin")
        List<String> findDistinctOrigins()
      • findDistinctHostNames

        @Query("select distinct(e.hostName) from PlatformEvent e order by e.hostName")
        List<String> findDistinctHostNames()