Skip to content

Commit 47c782f

Browse files
committed
RowsResponse -> BaseRowsResponse
1 parent 15cfcc5 commit 47c782f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/org/labkey/remoteapi/query/RowsResponse.java renamed to src/org/labkey/remoteapi/query/BaseRowsResponse.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
* and meta-data about those rows. Primarily, this class converts
3333
* date values in the rows array to real Java Date objects.
3434
*/
35-
abstract class RowsResponse extends CommandResponse
35+
abstract class BaseRowsResponse extends CommandResponse
3636
{
3737
/**
3838
* Constructs a new RowsResponse given the specified text and status code.
@@ -42,7 +42,7 @@ abstract class RowsResponse extends CommandResponse
4242
* @param json The parsed JSONObject (or null if JSON was not returned.
4343
* @param hasRequiredVersion An object that implements HasRequiredVersion, such as the command that created this response
4444
*/
45-
RowsResponse(String text, int statusCode, String contentType, JSONObject json, HasRequiredVersion hasRequiredVersion)
45+
BaseRowsResponse(String text, int statusCode, String contentType, JSONObject json, HasRequiredVersion hasRequiredVersion)
4646
{
4747
super(text, statusCode, contentType, json);
4848
double requiredVersion = hasRequiredVersion.getRequiredVersion();

src/org/labkey/remoteapi/query/SaveRowsResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* This response object provides helper methods for accessing the important
2424
* bits of the parsed response data.
2525
*/
26-
public class SaveRowsResponse extends RowsResponse
26+
public class SaveRowsResponse extends BaseRowsResponse
2727
{
2828
/**
2929
* Constructs a new SaveRowsResponse given the response text and status code

src/org/labkey/remoteapi/query/SelectRowsResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* of the parsed response data.
2929
* @see SelectRowsCommand
3030
*/
31-
public class SelectRowsResponse extends RowsResponse
31+
public class SelectRowsResponse extends BaseRowsResponse
3232
{
3333
/**
3434
* An enumeration of the possible column data types

0 commit comments

Comments
 (0)