Interface IridaClientDetailsRepository

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      IridaClientDetails loadClientDetailsByClientId​(java.lang.String clientId)
      Get a client by the given id
      • Methods inherited from interface org.springframework.data.repository.CrudRepository

        count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findAll, findAllById, findById, save, saveAll
      • Methods inherited from interface org.springframework.data.jpa.repository.JpaSpecificationExecutor

        count, exists, findAll, findAll, findAll, findOne
      • Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository

        findAll, findAll
      • Methods inherited from interface org.springframework.data.repository.history.RevisionRepository

        findLastChangeRevision, findRevision, findRevisions, findRevisions
    • Method Detail

      • loadClientDetailsByClientId

        @Query("from IridaClientDetails d where d.clientId = ?1")
        IridaClientDetails loadClientDetailsByClientId​(java.lang.String clientId)
        Get a client by the given id
        Parameters:
        clientId - id to load client for
        Returns:
        the found IridaClientDetails