Package com.skava.repository
Interface CollectionAttributeRepository
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<CollectionAttributeEntity,
,String> org.springframework.data.jpa.repository.JpaRepository<CollectionAttributeEntity,
,String> org.springframework.data.repository.ListCrudRepository<CollectionAttributeEntity,
,String> org.springframework.data.repository.ListPagingAndSortingRepository<CollectionAttributeEntity,
,String> org.springframework.data.repository.PagingAndSortingRepository<CollectionAttributeEntity,
,String> org.springframework.data.repository.query.QueryByExampleExecutor<CollectionAttributeEntity>
,org.springframework.data.repository.Repository<CollectionAttributeEntity,
String>
public interface CollectionAttributeRepository
extends org.springframework.data.jpa.repository.JpaRepository<CollectionAttributeEntity,String>
The Interface CollectionAttributeRepository provides generic CRUD operations for the CollectionAttributeEntity.
- Author:
- Infosys Equinox
-
Method Summary
Modifier and TypeMethodDescriptionfindByName
(String name) findByName - To find a collection attribute for the given name.Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, save
Methods inherited from interface org.springframework.data.jpa.repository.JpaRepository
deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, flush, getById, getOne, getReferenceById, saveAllAndFlush, saveAndFlush
Methods inherited from interface org.springframework.data.repository.ListCrudRepository
findAll, findAllById, saveAll
Methods inherited from interface org.springframework.data.repository.ListPagingAndSortingRepository
findAll
Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository
findAll
Methods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor
count, exists, findAll, findBy, findOne
-
Method Details
-
findByName
findByName - To find a collection attribute for the given name.- Parameters:
name
- name of the collection attribute.- Returns:
- the object of type
CollectionAttributeEntity
.
-