BATCH-167: The io.sql package was split into io.cursor and io.driving. This is an interim change, since subversion can be flaky when renaming packages.

This commit is contained in:
lucasward
2007-10-29 14:50:50 +00:00
parent 5a01edfddf
commit 21d76df559
8 changed files with 9 additions and 6 deletions

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.batch.io.sql;
package org.springframework.batch.io.cursor;
import java.sql.Connection;
import java.sql.ResultSet;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.batch.io.sql;
package org.springframework.batch.io.driving;
import java.util.ArrayList;
import java.util.List;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.batch.io.sql;
package org.springframework.batch.io.driving;
import org.springframework.batch.restart.RestartData;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.batch.io.sql;
package org.springframework.batch.io.driving;
import java.util.ArrayList;
import java.util.List;

View File

@@ -4,7 +4,7 @@ import java.util.List;
import java.util.Properties;
import org.springframework.batch.io.InputSource;
import org.springframework.batch.io.sql.SingleKeySqlDrivingQueryInputSource;
import org.springframework.batch.io.driving.SingleKeySqlDrivingQueryInputSource;
import org.springframework.batch.io.support.AbstractDrivingQueryInputSource;
import org.springframework.batch.restart.GenericRestartData;
import org.springframework.batch.restart.RestartData;

View File

@@ -22,6 +22,8 @@ import java.util.List;
import java.util.Properties;
import org.springframework.batch.io.InputSource;
import org.springframework.batch.io.driving.CompositeKeySqlDrivingQueryInputSource;
import org.springframework.batch.io.driving.RestartDataConverter;
import org.springframework.batch.restart.GenericRestartData;
import org.springframework.batch.restart.RestartData;
import org.springframework.jdbc.core.RowMapper;

View File

@@ -1,7 +1,7 @@
package org.springframework.batch.io.sql;
import org.springframework.batch.io.InputSource;
import org.springframework.batch.io.sql.SingleKeySqlDrivingQueryInputSource;
import org.springframework.batch.io.driving.SingleKeySqlDrivingQueryInputSource;
public class SingleKeySqlDrivingQueryInputSourceIntegrationTests extends AbstractSqlInputSourceIntegrationTests {

View File

@@ -1,6 +1,7 @@
package org.springframework.batch.io.sql;
import org.springframework.batch.io.InputSource;
import org.springframework.batch.io.cursor.SqlCursorInputSource;
/**
* Tests for {@link SqlCursorInputSource}