Uses of Interface
org.springframework.integration.jpa.support.parametersource.ParameterSource
Packages that use ParameterSource
Package
Description
Provides core classes of the JPA module.
Provides JPA Components support for Java DSL.
Provides generic support for ParameterSources and ParameterSource Factories.
-
Uses of ParameterSource in org.springframework.integration.jpa.core
Methods in org.springframework.integration.jpa.core with parameters of type ParameterSourceModifier and TypeMethodDescriptionprotected List<?>JpaExecutor.doPoll(ParameterSource jpaQLParameterSource, int firstResult, int maxNumberOfResults) intDefaultJpaOperations.executeUpdate(String updateQuery, ParameterSource source) intJpaOperations.executeUpdate(String updateQuery, ParameterSource source) Executes the given update statement and uses the given parameter source to set the required query parameters.intDefaultJpaOperations.executeUpdateWithNamedQuery(String updateQuery, ParameterSource source) intJpaOperations.executeUpdateWithNamedQuery(String updateQuery, ParameterSource source) intDefaultJpaOperations.executeUpdateWithNativeQuery(String updateQuery, ParameterSource source) intJpaOperations.executeUpdateWithNativeQuery(String updateQuery, ParameterSource source) List<?>DefaultJpaOperations.getResultListForNamedQuery(String selectNamedQuery, ParameterSource parameterSource, int firstResult, int maxNumberOfResults) List<?>JpaOperations.getResultListForNamedQuery(String selectNamedQuery, ParameterSource jpaQLParameterSource, int firstResult, int maxNumberOfResults) List<?>DefaultJpaOperations.getResultListForNativeQuery(String selectQuery, Class<?> entityClass, ParameterSource parameterSource, int firstResult, int maxNumberOfResults) List<?>JpaOperations.getResultListForNativeQuery(String selectQuery, Class<?> entityClass, ParameterSource jpaQLParameterSource, int firstResult, int maxNumberOfResults) List<?>DefaultJpaOperations.getResultListForQuery(String query, ParameterSource source) List<?>DefaultJpaOperations.getResultListForQuery(String queryString, ParameterSource source, int firstResult, int maxNumberOfResults) List<?>JpaOperations.getResultListForQuery(String query, ParameterSource source) Execute the provided query to return a list of results.List<?>JpaOperations.getResultListForQuery(String query, ParameterSource source, int firstResult, int maxNumberOfResults) Executes the provided query to return a list of results.DefaultJpaOperations.getSingleResultForQuery(String queryString, ParameterSource source) JpaOperations.getSingleResultForQuery(String query, ParameterSource source) Execute the provided query to return a single element.voidJpaExecutor.setParameterSource(ParameterSource parameterSource) Specify theParameterSourcethat would be used to provide additional parameters. -
Uses of ParameterSource in org.springframework.integration.jpa.dsl
Methods in org.springframework.integration.jpa.dsl with parameters of type ParameterSourceModifier and TypeMethodDescriptionJpaInboundChannelAdapterSpec.parameterSource(ParameterSource parameterSource) Specify aParameterSourcethat would be used to provide additional parameters. -
Uses of ParameterSource in org.springframework.integration.jpa.support.parametersource
Subinterfaces of ParameterSource in org.springframework.integration.jpa.support.parametersourceClasses in org.springframework.integration.jpa.support.parametersource that implement ParameterSourceModifier and TypeClassDescriptionclassprotected classMethods in org.springframework.integration.jpa.support.parametersource that return ParameterSourceModifier and TypeMethodDescriptionBeanPropertyParameterSourceFactory.createParameterSource(Object input) ParameterSourceFactory.createParameterSource(Object input) Return a newParameterSource.