Interface ODataResponseDescriptor
- All Known Subinterfaces:
ODataProtocol
- All Known Implementing Classes:
ODataProtocol.ODataProtocolV2
,ODataProtocol.ODataProtocolV4
public interface ODataResponseDescriptor
Descriptor for protocol specific information on deserializing OData responses.
-
Method Summary
Modifier and TypeMethodDescriptionThe JSON path(s) to the delta link of a versioned response.The JSON path(s) to an inline count.The JSON path(s) to the next link of a multi page response.The JSON path(s) to a result primitive.The JSON path(s) to a set of result elements.The JSON path(s) to a result object.
-
Method Details
-
getPathToResultSet
The JSON path(s) to a set of result elements. The last element of this array refers to the result array.- Returns:
- The path(s) to result set.
-
getPathToResultSingle
The JSON path(s) to a result object. The last element of this array refers to the result object.- Returns:
- The path(s) to single result.
-
getPathToResultPrimitive
The JSON path(s) to a result primitive. The last element of this array refers to the result value.- Returns:
- The path(s) to primitive result.
-
getPathToInlineCount
The JSON path(s) to an inline count. The last element of this array refers to the result value.- Returns:
- The path(s) to inline count value.
-
getPathToNextLink
The JSON path(s) to the next link of a multi page response. The last element of this array refers to the result value.- Returns:
- The path(s) to inline count value.
-
getPathToDeltaLink
The JSON path(s) to the delta link of a versioned response. The last element of this array refers to the result value.- Returns:
- The path(s) to inline count value.
-