Constructor and Description |
---|
GetByKeyRequestBuilder(String servicePath,
Class<EntityT> entityClass,
Map<String,Object> key)
Instantiates this fluent helper using the given service path to send the requests.
|
Modifier and Type | Method and Description |
---|---|
protected <PrimitiveT> |
addKeyProperty(String propertyName,
PrimitiveT value)
Adds a property to the OData key representation (composite key).
|
EntityT |
execute(HttpDestinationProperties destination)
Execute the OData request.
|
protected com.sap.cloud.sdk.datamodel.odatav4.core.CsrfTokenRetriever |
getCsrfTokenRetriever() |
protected Class<EntityT> |
getEntityClass()
Returns a class object of the type this fluent helper works with.
|
protected Map<String,String> |
getHeaders()
A map containing the headers to be used only for the actual request of this FluentHelper implementation.
|
protected List<ODataRequestListener> |
getListeners() |
protected Map<String,String> |
getParametersForRequestOnly()
A map containing the custom query parameters to be used only for the actual request of this FluentHelper
implementation.
|
String |
getQueryString()
Return the string representation of the underlying query that is being build by this fluent helper.
|
protected String |
getServicePath() |
protected FluentHelperT |
getThis()
Get the reference to this instance.
|
GetByKeyRequestBuilder<EntityT> |
select(Property<EntityT>... fields)
Query modifier to limit which field values of the entity EntityT get fetched and populated.
|
ODataRequestReadByKey |
toRequest()
Creates an instance of
ODataRequestReadByKey based on the Entity class. |
io.vavr.control.Try<ResultT> |
tryExecute(HttpDestinationProperties destination)
Safely execute the OData request.
|
FluentHelperT |
withHeader(String key,
String value)
Gives the option to specify custom HTTP headers.
|
FluentHelperT |
withHeaders(Map<String,String> map)
Gives the option to specify a map of custom HTTP headers.
|
FluentHelperT |
withListener(ODataRequestListener listener)
An error handling class that implements the error result handler interface can be attached to this fluent helper.
|
FluentHelperT |
withQueryParameter(String key,
String value)
Gives the option to specify custom query parameters for the request.
|
public GetByKeyRequestBuilder(@Nonnull String servicePath, @Nonnull Class<EntityT> entityClass, @Nonnull Map<String,Object> key)
servicePath
- The service path to direct the requests to.entityClass
- The expected entity type.key
- The composite entity key.IllegalArgumentException
- When there is no mapping found for one of the provided Java literal in the composite key.protected <PrimitiveT> void addKeyProperty(@Nonnull String propertyName, @Nonnull PrimitiveT value)
PrimitiveT
- The Java type of the value.propertyName
- EDMX name of the key property.value
- Current value of the property, taken from an entity instance.IllegalArgumentException
- When there is no mapping found for the provided Java literal.@Nonnull @Beta public ODataRequestReadByKey toRequest()
ODataRequestReadByKey
based on the Entity class.
The following settings are used:
ODataRequestReadByKey
.@Nonnull @Beta public String getQueryString()
@Nonnull @Beta public EntityT execute(@Nonnull HttpDestinationProperties destination)
destination
- The destination to be used as request target.@SafeVarargs @Nonnull public final GetByKeyRequestBuilder<EntityT> select(@Nonnull Property<EntityT>... fields)
fields
- Properties of EntityT to be selected.protected Class<EntityT> getEntityClass()
@Nonnull protected FluentHelperT getThis()
@Nonnull public io.vavr.control.Try<ResultT> tryExecute(@Nonnull HttpDestinationProperties destination)
destination
- The destination to be used as request target.Try
block.@Nonnull @Beta public FluentHelperT withListener(@Nonnull ODataRequestListener listener)
execute
method. If this method
is not called, then an instance of ODataRequestListener is used. Only one handler can be attached at a time per
fluent helper object, so calling this multiple times will replace the handler.listener
- Instance of an error handler class that implements the error result handler interface.@Nonnull @Beta public FluentHelperT withHeader(@Nonnull String key, @Nullable String value)
key
- Name of the (first) desired HTTP header parameter.value
- Value of the (first) desired HTTP header parameter.@Nonnull @Beta public FluentHelperT withHeaders(@Nonnull Map<String,String> map)
map
- A map of HTTP header key/value pairs.@Nonnull @Beta public FluentHelperT withQueryParameter(@Nonnull String key, @Nullable String value)
Note: It is recommended to only use this function for query parameters which are not supported by the VDM by default. Using this function to bypass fluent helper method calls can lead to unsupported response handling. There is no contract on the order or priority of parameters added to the request.
Example: Use the request query option $search
to reduce the result set, leaving
only entities which match the specified search expression. This feature is supported in protocol OData v4.
new DefaultBusinessPartnerService().getAllBusinessPartner().withQueryParameter("$search", "Köln OR Cologne")
key
- Name of the query parameter.value
- Value of the query parameter.@Nonnull protected com.sap.cloud.sdk.datamodel.odatav4.core.CsrfTokenRetriever getCsrfTokenRetriever()
@Nonnull protected Map<String,String> getHeaders()
@Nonnull protected Map<String,String> getParametersForRequestOnly()
@Nonnull protected List<ODataRequestListener> getListeners()
Copyright © 2020 SAP SE. All rights reserved.