Interface ScraperOwnedProfileRepository

All Superinterfaces:
org.springframework.data.repository.CrudRepository<ScraperOwnedProfileEntity,ScraperOwnedProfileReference>, org.springframework.data.repository.Repository<ScraperOwnedProfileEntity,ScraperOwnedProfileReference>

@Repository public interface ScraperOwnedProfileRepository extends org.springframework.data.repository.CrudRepository<ScraperOwnedProfileEntity,ScraperOwnedProfileReference>
Repository interface for managing scraper-owned profiles.

This interface extends the CrudRepository interface to provide basic CRUD operations for ScraperOwnedProfileEntity objects.

  • Method Details

    • findAllByReferenceOwnerAndReferenceNameIn

      List<ScraperOwnedProfileEntity> findAllByReferenceOwnerAndReferenceNameIn(String referenceOwner, Collection<String> referenceNames)
      Finds all scraper-owned profiles by the specified reference owner and reference names.
      Parameters:
      referenceOwner - The reference owner to search for.
      referenceNames - The reference names to search for.
      Returns:
      A list of scraper-owned profiles that match the specified reference owner and reference names.
    • findAllByReferenceOwner

      List<ScraperOwnedProfileEntity> findAllByReferenceOwner(String referenceOwner)
      Finds all scraper-owned profiles by the specified reference owner.
      Parameters:
      referenceOwner - The reference owner to search for.
      Returns:
      A list of scraper-owned profiles that match the specified reference owner.