Interface CollectionAttributesRepository

All Superinterfaces:
org.springframework.data.repository.CrudRepository<CollectionAttributesEntity,Long>, org.springframework.data.repository.Repository<CollectionAttributesEntity,Long>

public interface CollectionAttributesRepository extends org.springframework.data.repository.CrudRepository<CollectionAttributesEntity,Long>
The Interface CollectionAttributesRepository extends another CrudRepository which contains all default crud operations. CollectionAttributesRepository contains customized methods definitions for the operations in CollectionAttribute entity.
Author:
Infosys Equinox
  • Method Summary

    Modifier and Type
    Method
    Description
    org.springframework.data.domain.Page<CollectionAttributesEntity>
    findAll(org.springframework.data.domain.Pageable pageRequest)
    Find all CollectionAttributesEntity by given inputs.
    find CollectionAttributesEntity ByName.

    Methods inherited from interface org.springframework.data.repository.CrudRepository

    count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findAll, findAllById, findById, save, saveAll
  • Method Details

    • findAll

      org.springframework.data.domain.Page<CollectionAttributesEntity> findAll(org.springframework.data.domain.Pageable pageRequest)
      Find all CollectionAttributesEntity by given inputs.
      Parameters:
      pageRequest - contains pageable information like page, size
      Returns:
      the list of CollectionAttributesEntity
    • findByName

      find CollectionAttributesEntity ByName.
      Parameters:
      name - refers the CollectionAttribute
      Returns:
      the CollectionAttributesEntity