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:
@@ -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;
|
||||
@@ -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;
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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 {
|
||||
|
||||
|
||||
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user