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 Summary
Modifier and TypeMethodDescriptionfindAllByReferenceOwner
(String referenceOwner) Finds all scraper-owned profiles by the specified reference owner.findAllByReferenceOwnerAndReferenceNameIn
(String referenceOwner, Collection<String> referenceNames) Finds all scraper-owned profiles by the specified reference owner and reference names.Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findAll, findAllById, findById, save, saveAll
-
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
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.
-