org.springframework.batch.item.database
Interface ItemSqlParameterSourceProvider<T>

All Known Implementing Classes:
BeanPropertyItemSqlParameterSourceProvider

public interface ItemSqlParameterSourceProvider<T>

A convenient strategy for providing SqlParameterSource for named parameter SQL updates.

Since:
2.0
Author:
Thomas Risberg

Method Summary
 SqlParameterSource createSqlParameterSource(T item)
          Provide parameter values in an SqlParameterSource based on values from the provided item.
 

Method Detail

createSqlParameterSource

SqlParameterSource createSqlParameterSource(T item)
Provide parameter values in an SqlParameterSource based on values from the provided item.

Parameters:
item - the item to use for parameter values


Copyright © 2009 SpringSource. All Rights Reserved.