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(@Nullable ParameterSource jpaQLParameterSource, int firstResult, int maxNumberOfResults) intDefaultJpaOperations.executeUpdate(String updateQuery, @Nullable ParameterSource source) intJpaOperations.executeUpdate(String updateQuery, @Nullable ParameterSource source) Executes the given update statement and uses the given parameter source to set the required query parameters.intDefaultJpaOperations.executeUpdateWithNamedQuery(String updateQuery, @Nullable ParameterSource source) intJpaOperations.executeUpdateWithNamedQuery(String updateQuery, @Nullable ParameterSource source) intDefaultJpaOperations.executeUpdateWithNativeQuery(String updateQuery, @Nullable ParameterSource source) intJpaOperations.executeUpdateWithNativeQuery(String updateQuery, @Nullable ParameterSource source) List<?> DefaultJpaOperations.getResultListForNamedQuery(String selectNamedQuery, @Nullable ParameterSource parameterSource, int firstResult, int maxNumberOfResults) List<?> JpaOperations.getResultListForNamedQuery(String selectNamedQuery, @Nullable ParameterSource jpaQLParameterSource, int firstResult, int maxNumberOfResults) List<?> DefaultJpaOperations.getResultListForNativeQuery(String selectQuery, @Nullable Class<?> entityClass, @Nullable ParameterSource parameterSource, int firstResult, int maxNumberOfResults) List<?> JpaOperations.getResultListForNativeQuery(String selectQuery, @Nullable Class<?> entityClass, @Nullable ParameterSource jpaQLParameterSource, int firstResult, int maxNumberOfResults) List<?> DefaultJpaOperations.getResultListForQuery(String queryString, @Nullable ParameterSource source, int firstResult, int maxNumberOfResults) List<?> DefaultJpaOperations.getResultListForQuery(String query, ParameterSource source) List<?> JpaOperations.getResultListForQuery(String query, @Nullable ParameterSource source, int firstResult, int maxNumberOfResults) Executes the provided query to return a list of results.List<?> JpaOperations.getResultListForQuery(String query, ParameterSource source) Execute 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.