Interface UserRepository

    • Method Detail

      • findByOauthKey

        Optional<User> findByOauthKey​(String oauthKey)
        Returns a User object that matches the OAuth key.
        Parameters:
        oauthKey - OAuth key in the form of a string.
        Returns:
        An optional User object.
      • findByExternalKey

        Optional<User> findByExternalKey​(UUID externalKey)
        Returns a User object that matches the external key.
        Parameters:
        externalKey - External key in the form of a universally unique identifier.
        Returns:
        An optional User object.
      • getAllByOrderByDisplayNameAsc

        Iterable<User> getAllByOrderByDisplayNameAsc()
        Returns a list of User objects ordered by display name in ascending order.
        Returns:
        Returns an iterable User object.