Package com.epam.ta.reportportal.dao
Interface IntegrationTypeRepository
-
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<IntegrationType,java.lang.Long>,org.springframework.data.jpa.repository.JpaRepository<IntegrationType,java.lang.Long>,org.springframework.data.repository.PagingAndSortingRepository<IntegrationType,java.lang.Long>,org.springframework.data.repository.query.QueryByExampleExecutor<IntegrationType>,ReportPortalRepository<IntegrationType,java.lang.Long>,org.springframework.data.repository.Repository<IntegrationType,java.lang.Long>
public interface IntegrationTypeRepository extends ReportPortalRepository<IntegrationType,java.lang.Long>
Repository forIntegrationTypeentity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<IntegrationType>findAllByIntegrationGroup(IntegrationGroupEnum integrationGroup)Retrieve allIntegrationTypebyIntegrationType.integrationGroupjava.util.List<IntegrationType>findAllByOrderByCreationDate()Retrieve allIntegrationTypeordered byIntegrationType.creationDatein ascending orderjava.util.Optional<IntegrationType>findByName(java.lang.String name)Find integration by name-
Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteById, existsById, findById, save
-
Methods inherited from interface org.springframework.data.jpa.repository.JpaRepository
deleteAllInBatch, deleteInBatch, findAll, findAll, findAll, findAll, findAllById, flush, getOne, saveAll, saveAndFlush
-
Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository
findAll
-
Methods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor
count, exists, findAll, findOne
-
Methods inherited from interface com.epam.ta.reportportal.dao.ReportPortalRepository
exists, refresh
-
-
-
-
Method Detail
-
findAllByIntegrationGroup
java.util.List<IntegrationType> findAllByIntegrationGroup(IntegrationGroupEnum integrationGroup)
Retrieve allIntegrationTypebyIntegrationType.integrationGroup- Parameters:
integrationGroup-IntegrationType.integrationGroup- Returns:
- The
Listof theIntegrationType
-
findAllByOrderByCreationDate
java.util.List<IntegrationType> findAllByOrderByCreationDate()
Retrieve allIntegrationTypeordered byIntegrationType.creationDatein ascending order- Returns:
- The
Listof theIntegrationType
-
findByName
java.util.Optional<IntegrationType> findByName(java.lang.String name)
Find integration by name- Parameters:
name- Integration name- Returns:
-
-