Package com.commercetools.sync.services
Interface ShoppingListService
-
- All Known Implementing Classes:
ShoppingListServiceImpl
public interface ShoppingListService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.concurrent.CompletionStage<java.util.Map<java.lang.String,java.lang.String>>
cacheKeysToIds(java.util.Set<java.lang.String> shoppingListKeys)
Filters out the keys which are already cached and fetches only the not-cached shopping list keys from the CTP project defined in an injectedSphereClient
and stores a mapping for every shopping list to id in the cached map of keys -> ids and returns this cached map.java.util.concurrent.CompletionStage<java.util.Optional<io.sphere.sdk.shoppinglists.ShoppingList>>
createShoppingList(io.sphere.sdk.shoppinglists.ShoppingListDraft shoppingListDraft)
Given a resource draft of typeShoppingListDraft
, this method attempts to create a resourceShoppingList
based on it in the CTP project defined by the sync options.java.util.concurrent.CompletionStage<java.util.Set<io.sphere.sdk.shoppinglists.ShoppingList>>
fetchMatchingShoppingListsByKeys(java.util.Set<java.lang.String> keys)
Given aSet
of shopping list keys, this method fetches a set of all the shopping lists, matching given set of keys in the CTP project, defined in an injectedSphereClient
.java.util.concurrent.CompletionStage<java.util.Optional<io.sphere.sdk.shoppinglists.ShoppingList>>
fetchShoppingList(java.lang.String key)
Given a shopping list key, this method fetches a shopping list that matches given key in the CTP project defined in a potentially injectedSphereClient
.java.util.concurrent.CompletionStage<io.sphere.sdk.shoppinglists.ShoppingList>
updateShoppingList(io.sphere.sdk.shoppinglists.ShoppingList shoppingList, java.util.List<io.sphere.sdk.commands.UpdateAction<io.sphere.sdk.shoppinglists.ShoppingList>> updateActions)
Given aShoppingList
and aList
<UpdateAction
<ShoppingList
>>, this method issues an update request with these update actions on thisShoppingList
in the CTP project defined in a potentially injectedSphereClient
.
-
-
-
Method Detail
-
cacheKeysToIds
@Nonnull java.util.concurrent.CompletionStage<java.util.Map<java.lang.String,java.lang.String>> cacheKeysToIds(@Nonnull java.util.Set<java.lang.String> shoppingListKeys)
Filters out the keys which are already cached and fetches only the not-cached shopping list keys from the CTP project defined in an injectedSphereClient
and stores a mapping for every shopping list to id in the cached map of keys -> ids and returns this cached map.Note: If all the supplied keys are already cached, the cached map is returned right away with no request to CTP.
- Parameters:
shoppingListKeys
- the shopping list keys to fetch and cache the ids for.- Returns:
CompletionStage
<Map
> in which the result of it's completion contains a map of all shopping list keys -> ids
-
fetchMatchingShoppingListsByKeys
@Nonnull java.util.concurrent.CompletionStage<java.util.Set<io.sphere.sdk.shoppinglists.ShoppingList>> fetchMatchingShoppingListsByKeys(@Nonnull java.util.Set<java.lang.String> keys)
Given aSet
of shopping list keys, this method fetches a set of all the shopping lists, matching given set of keys in the CTP project, defined in an injectedSphereClient
. A mapping of the key to the id of the fetched shopping lists is persisted in an in-memory map.- Parameters:
keys
- set of shopping list keys to fetch matching shopping lists by.- Returns:
CompletionStage
<Map
> in which the result of it's completion contains aSet
of all matching shopping lists.
-
fetchShoppingList
@Nonnull java.util.concurrent.CompletionStage<java.util.Optional<io.sphere.sdk.shoppinglists.ShoppingList>> fetchShoppingList(@Nullable java.lang.String key)
Given a shopping list key, this method fetches a shopping list that matches given key in the CTP project defined in a potentially injectedSphereClient
. If there is no matching shopping list, an emptyOptional
will be returned in the returned future. A mapping of the key to the id of the fetched shopping list is persisted in an in-memory map.- Parameters:
key
- the key of the shopping list to fetch.- Returns:
CompletionStage
<Optional
> in which the result of it's completion contains anOptional
that contains the matchingShoppingList
if exists, otherwise empty.
-
createShoppingList
@Nonnull java.util.concurrent.CompletionStage<java.util.Optional<io.sphere.sdk.shoppinglists.ShoppingList>> createShoppingList(@Nonnull io.sphere.sdk.shoppinglists.ShoppingListDraft shoppingListDraft)
Given a resource draft of typeShoppingListDraft
, this method attempts to create a resourceShoppingList
based on it in the CTP project defined by the sync options.A completion stage containing an empty option and the error callback will be triggered in those cases:
- the draft has a blank key
- the create request fails on CTP
On the other hand, if the resource gets created successfully on CTP, then the created resource's id and key are cached and the method returns a
CompletionStage
in which the result of it's completion contains an instanceOptional
of the resource which was created.- Parameters:
shoppingListDraft
- the resource draft to create a resource based off of.- Returns:
- a
CompletionStage
containing an optional with the created resource if successful otherwise an empty optional.
-
updateShoppingList
@Nonnull java.util.concurrent.CompletionStage<io.sphere.sdk.shoppinglists.ShoppingList> updateShoppingList(@Nonnull io.sphere.sdk.shoppinglists.ShoppingList shoppingList, @Nonnull java.util.List<io.sphere.sdk.commands.UpdateAction<io.sphere.sdk.shoppinglists.ShoppingList>> updateActions)
Given aShoppingList
and aList
<UpdateAction
<ShoppingList
>>, this method issues an update request with these update actions on thisShoppingList
in the CTP project defined in a potentially injectedSphereClient
. This method returnsCompletionStage
<ShoppingList
> in which the result of it's completion contains an instance of theShoppingList
which was updated in the CTP project.- Parameters:
shoppingList
- theShoppingList
to update.updateActions
- the update actions to update theShoppingList
with.- Returns:
CompletionStage
<ShoppingList
> containing as a result of it's completion an instance of theShoppingList
which was updated in the CTP project or aSphereException
.
-
-