
@rem ----------------------------------------------------------------
@rem TestS04Row.java
@rem Values to check request and response of RowXXX request
@rem ----------------------------------------------------------------

@begin RowCreateRequest
@rem The client request of a RowCreate request
{
    "EntityName":"test",
    "LocalRevisionCode":"00000000000010abcdef0123456789",
    "EfectiveDate":null,
    "Comment":null,
    "Data":"\n{\n    \"id\":1,\n    \"text\":\"AAA\",\n}"
}
@end RowCreateRequest

@begin RowCreateResponse
@rem The server response of commit request for this test 
{
    "StatusCode":0,
    "StatusMessage":null,
    "RelatedFeatureCode":"00000000000014abcdef0123456789",
    "EntityName":"test",
    "EntityCode":"00000000000002abcdef0123456789",
    "RevisionCode":"00000000000020abcdef0123456789"
}
@end RowCreateResponse


@begin RowUpdateRequest
@rem The client request of a RowUpdate request
{
    "EntityName":"test",
    "LocalRevisionCode":"00000000000020abcdef0123456789",
    "EfectiveDate":null,
    "Comment":null,
    "Data":"\n{\n    \"id\":1,\n    \"text\":\"AA2\",\n    \"VCSGISCODE\":\"00000000000014abcdef0123456789\"\n}"
}
@end RowUpdateRequest

@begin RowUpdateResponse
@rem The server response of RowUpdate request for this test 
{
    "StatusCode":0,
    "StatusMessage":null,
    "EntityName":"test",
    "EntityCode":"00000000000002abcdef0123456789",
    "RevisionCode":"00000000000022abcdef0123456789"
}
@end RowUpdateResponse


@begin RowDeleteRequest
@rem The client request of a RowDelete request
{
    "EntityName":"test",
    "LocalRevisionCode":"00000000000022abcdef0123456789",
    "EfectiveDate":null,
    "Comment":null,
    "RelatedFeatureCode":"00000000000014abcdef0123456789"
}
@end RowDeleteRequest

@begin RowDeleteResponse
@rem The server response of RowDelete request for this test 
{
    "StatusCode":0,
    "StatusMessage":null,
    "EntityName":"test",
    "EntityCode":"00000000000002abcdef0123456789",
    "RevisionCode":"00000000000023abcdef0123456789",
}
@end RowDeleteResponse
