public final class CategoryServiceImpl extends java.lang.Object implements CategoryService
| Modifier and Type | Field and Description |
|---|---|
protected com.github.benmanes.caffeine.cache.Cache<java.lang.String,java.lang.String> |
keyToIdCache |
protected static int |
MAXIMUM_ALLOWED_UPDATE_ACTIONS |
| Constructor and Description |
|---|
CategoryServiceImpl(CategorySyncOptions syncOptions) |
| Modifier and Type | Method and Description |
|---|---|
java.util.concurrent.CompletionStage<java.util.Map<java.lang.String,java.lang.String>> |
cacheKeysToIds(java.util.Set<java.lang.String> categoryKeys)
Filters out the keys which are already cached and fetches only the not-cached category keys
from the CTP project defined in an injected
SphereClient and stores a mapping for every
category to id in the cached map of keys -> ids and returns this cached map. |
java.util.concurrent.CompletionStage<java.util.Optional<io.sphere.sdk.categories.Category>> |
createCategory(io.sphere.sdk.categories.CategoryDraft categoryDraft)
Given a resource draft of type
CategoryDraft, this method attempts to create a resource
Category based on it in the CTP project defined by the sync options. |
java.util.concurrent.CompletionStage<java.util.Optional<java.lang.String>> |
fetchCachedCategoryId(java.lang.String key)
Given a
key, this method first checks if cached map of category keys -> ids contains
the key. |
java.util.concurrent.CompletionStage<java.util.Optional<io.sphere.sdk.categories.Category>> |
fetchCategory(java.lang.String key)
Given a category key, this method fetches a category that matches this given key in the CTP
project defined in a potentially injected
SphereClient. |
java.util.concurrent.CompletionStage<java.util.Set<io.sphere.sdk.categories.Category>> |
fetchMatchingCategoriesByKeys(java.util.Set<java.lang.String> categoryKeys)
Given a
Set of category keys, this method fetches a set of all the categories, matching
this given set of keys in the CTP project, defined in an injected SphereClient. |
java.util.concurrent.CompletionStage<io.sphere.sdk.categories.Category> |
updateCategory(io.sphere.sdk.categories.Category category,
java.util.List<io.sphere.sdk.commands.UpdateAction<io.sphere.sdk.categories.Category>> updateActions)
Given a
Category and a List<UpdateAction<Category>>, this method issues an update request with these update actions on this
Category in the CTP project defined in a potentially injected SphereClient. |
protected final com.github.benmanes.caffeine.cache.Cache<java.lang.String,java.lang.String> keyToIdCache
protected static final int MAXIMUM_ALLOWED_UPDATE_ACTIONS
public CategoryServiceImpl(@Nonnull
CategorySyncOptions syncOptions)
@Nonnull
public java.util.concurrent.CompletionStage<java.util.Map<java.lang.String,java.lang.String>> cacheKeysToIds(@Nonnull
java.util.Set<java.lang.String> categoryKeys)
CategoryServiceSphereClient and stores a mapping for every
category to id in the cached map of keys -> ids and returns this cached map.cacheKeysToIds in interface CategoryServicecategoryKeys - - a set category keys to fetch and cache the ids forCompletionStage<Map> in which the result of it's completion
contains a map of requested category keys -> ids@Nonnull
public java.util.concurrent.CompletionStage<java.util.Set<io.sphere.sdk.categories.Category>> fetchMatchingCategoriesByKeys(@Nonnull
java.util.Set<java.lang.String> categoryKeys)
CategoryServiceSet of category keys, this method fetches a set of all the categories, matching
this given set of keys in the CTP project, defined in an injected SphereClient. A mapping of the key to the id of the fetched categories is
persisted in an in-memory map.fetchMatchingCategoriesByKeys in interface CategoryServicecategoryKeys - set of category keys to fetch matching categories by.CompletionStage<Map> in which the result of it's completion
contains a Set of all matching categories.@Nonnull
public java.util.concurrent.CompletionStage<java.util.Optional<io.sphere.sdk.categories.Category>> fetchCategory(@Nullable
java.lang.String key)
CategoryServiceSphereClient. If there is no matching
category an empty Optional will be returned in the returned future. A mapping of the
key to the id of the fetched category is persisted in an in -memory map.fetchCategory in interface CategoryServicekey - the key of the category to fetch.CompletionStage<Optional> in which the result of it's completion
contains an Optional that contains the matching Category if exists,
otherwise empty.@Nonnull
public java.util.concurrent.CompletionStage<java.util.Optional<java.lang.String>> fetchCachedCategoryId(@Nonnull
java.lang.String key)
CategoryServicekey, this method first checks if cached map of category keys -> ids contains
the key. If it does, then an optional containing the mapped id is returned. If the cache
doesn't contain the key; this method attempts to fetch the id of the key from the CTP project,
caches it and returns a CompletionStage<Optional<String>>
in which the result of it's completion could contain an Optional with the id inside of
it or an empty Optional if no Category was found in the CTP project with this
key.fetchCachedCategoryId in interface CategoryServicekey - the key by which a Category id should be fetched from the CTP project.CompletionStage<Optional<String>> in which the
result of it's completion could contain an Optional with the id inside of it or an
empty Optional if no Category was found in the CTP project with this key.@Nonnull
public java.util.concurrent.CompletionStage<java.util.Optional<io.sphere.sdk.categories.Category>> createCategory(@Nonnull
io.sphere.sdk.categories.CategoryDraft categoryDraft)
CategoryServiceCategoryDraft, this method attempts to create a resource
Category 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:
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 instance Optional of the resource which was
created.
createCategory in interface CategoryServicecategoryDraft - the resource draft to create a resource based off of.CompletionStage containing an optional with the created resource if
successful otherwise an empty optional.@Nonnull
public java.util.concurrent.CompletionStage<io.sphere.sdk.categories.Category> updateCategory(@Nonnull
io.sphere.sdk.categories.Category category,
@Nonnull
java.util.List<io.sphere.sdk.commands.UpdateAction<io.sphere.sdk.categories.Category>> updateActions)
CategoryServiceCategory and a List<UpdateAction<Category>>, this method issues an update request with these update actions on this
Category in the CTP project defined in a potentially injected SphereClient. This method returns CompletionStage<Category> in which the result of it's completion contains an instance of the Category which was updated in the CTP project.updateCategory in interface CategoryServicecategory - the Category to update.updateActions - the update actions to update the Category with.CompletionStage<Category> containing as a result of it's
completion an instance of the Category which was updated in the CTP project or a
SphereException.