tablestore/src/main/java/com/alicloud/openservices/tablestore/core/http/BulkExportResponseConsumer.java [20:27]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected BulkExportResponse parseResult() throws Exception {
        ResponseContentWithMeta responseContent = getResponseContentWithMeta();
        OtsInternalApi.BulkExportResponse bulkExportResponse =
                (OtsInternalApi.BulkExportResponse) responseContent.getMessage();
        BulkExportResponse result = ResponseFactory.createBulkExportResponse(
                responseContent, bulkExportResponse);
        return result;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tablestore/src/main/java/com/alicloud/openservices/tablestore/core/http/GetBulkExportResponseConsumer.java [21:28]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected BulkExportResponse parseResult() throws Exception {
        ResponseContentWithMeta responseContent = getResponseContentWithMeta();
        OtsInternalApi.BulkExportResponse bulkExportResponse =
                (OtsInternalApi.BulkExportResponse) responseContent.getMessage();
        BulkExportResponse result = ResponseFactory.createBulkExportResponse(
                responseContent, bulkExportResponse);
        return result;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



