Uses of Class
com.sap.cloud.sdk.datamodel.odata.client.expression.ODataResourcePath
Package
Description
-
Uses of ODataResourcePath in com.sap.cloud.sdk.datamodel.odata.client.expression
Modifier and TypeMethodDescriptionODataResourcePath.addParameterToLastSegment
(AbstractODataParameters parameters) Add a path parameter to the last segment.ODataResourcePath.addSegment
(String segment) Add a navigation to the path.ODataResourcePath.addSegment
(String segment, AbstractODataParameters parameters) Add a navigation with a parameters or function or action call to the path.static ODataResourcePath
Convenience method fornew ODataResourcePath().addSegment(segment)
.static ODataResourcePath
ODataResourcePath.of
(String segment, AbstractODataParameters segmentParameter) Convenience method fornew ODataResourcePath().addSegment(segment, segmentParameter)
. -
Uses of ODataResourcePath in com.sap.cloud.sdk.datamodel.odata.client.request
Modifier and TypeFieldDescriptionprotected final ODataResourcePath
ODataRequestGeneric.resourcePath
TheODataResourcePath
that identifies the OData resource to operate on.Modifier and TypeMethodDescriptionprotected ODataResourcePath
ODataRequestGeneric.getResourcePath()
TheODataResourcePath
that identifies the OData resource to operate on.ModifierConstructorDescriptionODataRequestAction
(String servicePath, ODataResourcePath actionPath, String actionParameters, ODataProtocol protocol) Default constructor for OData Action request.ODataRequestAction
(String servicePath, ODataResourcePath actionPath, String actionParameters, String encodedQuery, ODataProtocol protocol) Constructor with StructuredQuery for OData Function request.ODataRequestCount
(String servicePath, ODataResourcePath resourcePath, StructuredQuery query) Constructor with StructuredQuery for OData Count request.ODataRequestCount
(String servicePath, ODataResourcePath resourcePath, String encodedQuery, ODataProtocol protocol) Default constructor for OData Count request.ODataRequestCreate
(String servicePath, ODataResourcePath entityPath, String serializedEntity, ODataProtocol protocol) Default constructor for OData Create request.ODataRequestDelete
(String servicePath, ODataResourcePath entityPath, String versionIdentifier, ODataProtocol protocol) Default constructor for OData delete requests.ODataRequestFunction
(String servicePath, ODataResourcePath functionPath, StructuredQuery structQuery) Constructor with StructuredQuery for OData Function request.ODataRequestFunction
(String servicePath, ODataResourcePath functionPath, ODataFunctionParameters parameters, String query, ODataProtocol protocol) Convenience constructor for invocations of unbound functions.ODataRequestFunction
(String servicePath, ODataResourcePath functionPath, String encodedQuery, ODataProtocol protocol) Default constructor for OData Function request.ODataRequestRead
(String servicePath, ODataResourcePath entityPath, StructuredQuery query) Constructor with StructuredQuery for OData read requests on entity collections directly.ODataRequestRead
(String servicePath, ODataResourcePath entityPath, String encodedQuery, ODataProtocol protocol) Default constructor for OData Read request.ODataRequestReadByKey
(String servicePath, ODataResourcePath entityPath, ODataEntityKey entityKey, StructuredQuery query) Constructor with StructuredQuery for OData read requests on entity collections directly.ODataRequestReadByKey
(String servicePath, ODataResourcePath entityPath, String encodedQuery, ODataProtocol protocol) Default constructor for OData Read requests.ODataRequestUpdate
(String servicePath, ODataResourcePath entityPath, String serializedEntity, UpdateStrategy updateStrategy, String versionIdentifier, ODataProtocol protocol) Default constructor for OData Update requests.ODataRequestUpdate
(String servicePath, ODataResourcePath entityPath, org.apache.http.HttpEntity httpEntity, UpdateStrategy updateStrategy, String versionIdentifier, ODataProtocol protocol) Default constructor for OData Update requests. -
Uses of ODataResourcePath in com.sap.cloud.sdk.datamodel.odatav4.core
ModifierConstructorDescriptionActionRequestBuilder
(String servicePath, ODataResourcePath actionPath, Map<String, Object> parameters) Instantiates this request builder using the given service path to send the requests.CollectionValueActionRequestBuilder
(String servicePath, ODataResourcePath actionPath, Map<String, Object> parameters, Class<ResultT> resultClass) Instantiates this request builder using the given service path to send the requests.FunctionRequestBuilder
(String servicePath, ODataResourcePath functionPath) Instantiates this request builder using the given service path to send the requests.SingleValueActionRequestBuilder
(String servicePath, ODataResourcePath actionPath, Map<String, Object> parameters, Class<ResultT> resultClass) Instantiates this request builder using the given service path to send the requests.