Interface DiscoverActorsService


public interface DiscoverActorsService
Provide service methods for handling Actors.
  • Method Details

    • findByPreferredUsername

      Optional<Actor> findByPreferredUsername(String user)
    • findById

      Optional<Actor> findById(String id)
      Searches a actor by it's id. where the id is part of the users URL!
      Parameters:
      id -
      Returns:
      Actor found by the passed id.
    • findByOauth2IssuerUserId

      Optional<Actor> findByOauth2IssuerUserId(String issuerUserId)
      Searches a actor by it's Oauth2IssuerUserId.
      Parameters:
      issuerUserId -
      Returns:
      Actor found by the passed issuerUserI.