org.springframework.data.querydsl.QuerydslPredicateExecutor Java Examples
The following examples show how to use
org.springframework.data.querydsl.QuerydslPredicateExecutor.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: SolrRepositoryFactory.java From dubbox with Apache License 2.0 | 4 votes |
private static boolean isQueryDslRepository(Class<?> repositoryInterface) { return QUERY_DSL_PRESENT && QueryDslPredicateExecutor.class.isAssignableFrom(repositoryInterface); }
Example #2
Source File: CrateRepositoryFactory.java From spring-data-crate with Apache License 2.0 | 4 votes |
private static boolean isQueryDslRepository(Class<?> repositoryInterface) { return QUERY_DSL_PRESENT && QueryDslPredicateExecutor.class.isAssignableFrom(repositoryInterface); }
Example #3
Source File: DynamoDBRepositoryFactory.java From spring-data-dynamodb with Apache License 2.0 | 4 votes |
private static boolean isQueryDslRepository(Class<?> repositoryInterface) { return QUERY_DSL_PRESENT && QueryDslPredicateExecutor.class.isAssignableFrom(repositoryInterface); }
Example #4
Source File: EntityGraphJpaRepositoryFactory.java From spring-data-jpa-entity-graph with MIT License | 4 votes |
private boolean isQueryDslExecutor(Class<?> repositoryInterface) { return QUERY_DSL_PRESENT && QuerydslPredicateExecutor.class.isAssignableFrom(repositoryInterface); }
Example #5
Source File: DefaultRepositoryFactory.java From gazpachoquest with GNU General Public License v3.0 | 2 votes |
/** * Returns whether the given repository interface requires a QueryDsl * specific implementation to be chosen. * * @param repositoryInterface * @return */ private boolean isQueryDslExecutor(final Class<?> repositoryInterface) { return QUERY_DSL_PRESENT && QueryDslPredicateExecutor.class.isAssignableFrom(repositoryInterface); }
Example #6
Source File: BasicJpaRepositoryFactory.java From base-framework with Apache License 2.0 | 2 votes |
/** * Returns whether the given repository interface requires a QueryDsl specific implementation to be chosen. * * @param repositoryInterface * * @return boolean */ private boolean isQueryDslExecutor(Class<?> repositoryInterface) { return QUERY_DSL_PRESENT && QueryDslPredicateExecutor.class.isAssignableFrom(repositoryInterface); }
Example #7
Source File: KeyValueRepositoryFactory.java From spring-data-keyvalue with Apache License 2.0 | 2 votes |
/** * Returns whether the given repository interface requires a QueryDsl specific implementation to be chosen. * * @param repositoryInterface must not be {@literal null}. * @return */ private static boolean isQueryDslRepository(Class<?> repositoryInterface) { return QUERY_DSL_PRESENT && QuerydslPredicateExecutor.class.isAssignableFrom(repositoryInterface); }