Class SingleValuedFluentHelperFunction<FluentHelperT,ObjectT,ResultT>
java.lang.Object
com.sap.cloud.sdk.datamodel.odata.helper.FluentHelperBasic<FluentHelperT,ObjectT,ResultT>
com.sap.cloud.sdk.datamodel.odata.helper.FluentHelperFunction<FluentHelperT,ObjectT,ResultT>
com.sap.cloud.sdk.datamodel.odata.helper.SingleValuedFluentHelperFunction<FluentHelperT,ObjectT,ResultT>
- Type Parameters:
FluentHelperT
- The fluent helper type.ObjectT
- The type of the object this OData request operates on, if any.ResultT
- The type of the result entity, if any.
- All Implemented Interfaces:
FluentHelperExecutable<Object>
public abstract class SingleValuedFluentHelperFunction<FluentHelperT,ObjectT,ResultT>
extends FluentHelperFunction<FluentHelperT,ObjectT,ResultT>
Representation of any OData function import as a fluent class for further configuring the request and
executing
it. This is specifically for functions that return either a single
primitive value or entity value-
Field Summary
Fields inherited from class com.sap.cloud.sdk.datamodel.odata.helper.FluentHelperBasic
csrfTokenRetriever, entityCollection
-
Constructor Summary
ConstructorDescriptionSingleValuedFluentHelperFunction
(String servicePath) Instantiates this fluent helper using the given service path to send the requests. -
Method Summary
Methods inherited from class com.sap.cloud.sdk.datamodel.odata.helper.FluentHelperFunction
createRequest, executeMultiple, executeSingle, getCsrfTokenRetriever, getFunctionName, getParameters, refineJsonResponse, toRequest, withCsrfToken, withoutCsrfToken
Methods inherited from class com.sap.cloud.sdk.datamodel.odata.helper.FluentHelperBasic
executeRequest, getEntityClass, getHeaders, getParametersForRequestOnly, getServicePath, getThis, withHeader, withHeaders, withQueryParameter
-
Constructor Details
-
SingleValuedFluentHelperFunction
Instantiates this fluent helper using the given service path to send the requests.- Parameters:
servicePath
- The service path to direct the requests to.
-