Fixed some spelling errors

This commit is contained in:
Gunnar Hillert
2011-10-11 16:18:52 -04:00
committed by Mark Fisher
parent 4508212d40
commit c302f96f6d
2 changed files with 4 additions and 4 deletions

View File

@@ -124,7 +124,7 @@ public class StoredProcExecutor implements InitializingBean {
* obtained and the select query to execute the stored procedure.
*
* @param dataSource used to create a {@link SimpleJdbcTemplate}, must not be Null
* @param storedProcedureName Name of the Stored Procedure of function, must not be empty
* @param storedProcedureName Name of the Stored Procedure or function, must not be empty
*/
public StoredProcExecutor(DataSource dataSource, String storedProcedureName) {
@@ -207,7 +207,7 @@ public class StoredProcExecutor implements InitializingBean {
}
/**
* Execute a Stored Procedure of Function - Use when not {@link Message} is
* Execute a Stored Procedure or Function - Use when no {@link Message} is
* available to extract {@link ProcedureParameter} values from it.
*
* @return Map containing the stored procedure results if any.
@@ -217,7 +217,7 @@ public class StoredProcExecutor implements InitializingBean {
}
/**
* Execute a Stored Procedure of Function - Use with {@link Message} is
* Execute a Stored Procedure or Function - Use with {@link Message} is
* available to extract {@link ProcedureParameter} values from it.
*
* @return Map containing the stored procedure results if any.

View File

@@ -52,7 +52,7 @@ public class StoredProcPollingChannelAdapter extends IntegrationObjectSupport im
* obtained and the stored procedure name to execute.
*
* @param dataSource used to create a {@link SimpleJdbcCall}
* @param storedProcedureName Name of the Stored Procedure of Function to execute
* @param storedProcedureName Name of the Stored Procedure or Function to execute
*/
public StoredProcPollingChannelAdapter(DataSource dataSource, String storedProcedureName) {