Interface ConfiguredIndicatorRepository
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<ConfiguredIndicator, Long>, org.springframework.data.jpa.repository.JpaRepository<ConfiguredIndicator, Long>, org.springframework.data.repository.ListCrudRepository<ConfiguredIndicator, Long>, org.springframework.data.repository.ListPagingAndSortingRepository<ConfiguredIndicator, Long>, org.springframework.data.repository.PagingAndSortingRepository<ConfiguredIndicator, Long>, org.springframework.data.repository.query.QueryByExampleExecutor<ConfiguredIndicator>, org.springframework.data.repository.Repository<ConfiguredIndicator, Long>
@Repository
public interface ConfiguredIndicatorRepository
extends org.springframework.data.jpa.repository.JpaRepository<ConfiguredIndicator, Long>
Data-access layer for
ConfiguredIndicator.- Version:
- 3.0.6
- Author:
- Stephen Prizio
-
Method Summary
Modifier and TypeMethodDescriptionfindConfiguredIndicatorByDataSourceAndSymbolAndIndicatorType(DataSource dataSource, Symbol symbol, IndicatorType indicatorType) Returns aConfiguredIndicatorfor the given information.findConfiguredIndicatorsByDataSource(DataSource dataSource) findConfiguredIndicatorsByDataSourceAndSymbol(DataSource dataSource, Symbol symbol) Returns aListofConfiguredIndicatorfor the given symbol and data source.Returns aListofConfiguredIndicatorfor the given symbol.Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, saveMethods inherited from interface org.springframework.data.jpa.repository.JpaRepository
deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, flush, getById, getOne, getReferenceById, saveAllAndFlush, saveAndFlushMethods inherited from interface org.springframework.data.repository.ListCrudRepository
findAll, findAllById, saveAllMethods inherited from interface org.springframework.data.repository.ListPagingAndSortingRepository
findAllMethods inherited from interface org.springframework.data.repository.PagingAndSortingRepository
findAllMethods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor
count, exists, findAll, findBy, findOne
-
Method Details
-
findConfiguredIndicatorByDataSourceAndSymbolAndIndicatorType
ConfiguredIndicator findConfiguredIndicatorByDataSourceAndSymbolAndIndicatorType(DataSource dataSource, Symbol symbol, IndicatorType indicatorType) Returns aConfiguredIndicatorfor the given information.- Parameters:
dataSource-DataSourcesymbol-SymbolindicatorType-IndicatorType- Returns:
- nullable
ConfiguredIndicator
-
findConfiguredIndicatorsByDataSource
- Parameters:
dataSource-DataSource- Returns:
ListofConfiguredIndicator
-
findConfiguredIndicatorsBySymbol
Returns aListofConfiguredIndicatorfor the given symbol.- Parameters:
symbol-Symbol- Returns:
ListofConfiguredIndicator
-
findConfiguredIndicatorsByDataSourceAndSymbol
List<ConfiguredIndicator> findConfiguredIndicatorsByDataSourceAndSymbol(DataSource dataSource, Symbol symbol) Returns aListofConfiguredIndicatorfor the given symbol and data source.- Parameters:
dataSource-DataSourcesymbol-Symbol- Returns:
ListofConfiguredIndicator
-