Class TaxCategoryServiceImpl
- java.lang.Object
 - 
- com.commercetools.sync.services.impl.TaxCategoryServiceImpl
 
 
- 
- All Implemented Interfaces:
 TaxCategoryService
public final class TaxCategoryServiceImpl extends java.lang.Object implements TaxCategoryService
 
- 
- 
Field Summary
Fields Modifier and Type Field Description protected com.github.benmanes.caffeine.cache.Cache<java.lang.String,java.lang.String>keyToIdCacheprotected static intMAXIMUM_ALLOWED_UPDATE_ACTIONS 
- 
Constructor Summary
Constructors Constructor Description TaxCategoryServiceImpl(TaxCategorySyncOptions syncOptions) 
- 
Method Summary
All Methods Instance Methods Concrete 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> taxCategoryKeys)Filters out the keys which are already cached and fetches only the not-cached tax category keys from the CTP project defined in an injectedSphereClientand stores a mapping for every tax 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.taxcategories.TaxCategory>>createTaxCategory(io.sphere.sdk.taxcategories.TaxCategoryDraft taxCategoryDraft)Given a resource draft ofTaxCategoryDraft, this method attempts to create a resourceTaxCategorybased on it in the CTP project defined by the sync options.java.util.concurrent.CompletionStage<java.util.Optional<java.lang.String>>fetchCachedTaxCategoryId(java.lang.String key)Given akey, this method first checks if a cached map of TaxCategory keys -> ids is not empty.java.util.concurrent.CompletionStage<java.util.Set<io.sphere.sdk.taxcategories.TaxCategory>>fetchMatchingTaxCategoriesByKeys(java.util.Set<java.lang.String> keys)Given aSetof tax category keys, this method fetches a set of all the taxCategories, matching given set of keys in the CTP project, defined in an injectedSphereClient.java.util.concurrent.CompletionStage<java.util.Optional<io.sphere.sdk.taxcategories.TaxCategory>>fetchTaxCategory(java.lang.String key)Given a tax category key, this method fetches a tax category that matches given key in the CTP project defined in a potentially injectedSphereClient.java.util.concurrent.CompletionStage<io.sphere.sdk.taxcategories.TaxCategory>updateTaxCategory(io.sphere.sdk.taxcategories.TaxCategory taxCategory, java.util.List<io.sphere.sdk.commands.UpdateAction<io.sphere.sdk.taxcategories.TaxCategory>> updateActions)Given aTaxCategoryand aList<UpdateAction<TaxCategory>>, this method issues an update request with these update actions on thisTaxCategoryin the CTP project defined in a potentially injectedSphereClient. 
 - 
 
- 
- 
Field Detail
- 
keyToIdCache
protected final com.github.benmanes.caffeine.cache.Cache<java.lang.String,java.lang.String> keyToIdCache
 
- 
MAXIMUM_ALLOWED_UPDATE_ACTIONS
protected static final int MAXIMUM_ALLOWED_UPDATE_ACTIONS
- See Also:
 - Constant Field Values
 
 
 - 
 
- 
Constructor Detail
- 
TaxCategoryServiceImpl
public TaxCategoryServiceImpl(@Nonnull TaxCategorySyncOptions syncOptions) 
 - 
 
- 
Method Detail
- 
cacheKeysToIds
@Nonnull public java.util.concurrent.CompletionStage<java.util.Map<java.lang.String,java.lang.String>> cacheKeysToIds(@Nonnull java.util.Set<java.lang.String> taxCategoryKeys)Description copied from interface:TaxCategoryServiceFilters out the keys which are already cached and fetches only the not-cached tax category keys from the CTP project defined in an injectedSphereClientand stores a mapping for every tax category to id in the cached map of keys -> ids and returns this cached map.- Specified by:
 cacheKeysToIdsin interfaceTaxCategoryService- Parameters:
 taxCategoryKeys- - a set of tax category keys to fetch and cache the ids for- Returns:
 CompletionStage<Map> in which the result of it's completion contains a map of requested tax category keys -> ids
 
- 
fetchCachedTaxCategoryId
@Nonnull public java.util.concurrent.CompletionStage<java.util.Optional<java.lang.String>> fetchCachedTaxCategoryId(@Nullable java.lang.String key)Description copied from interface:TaxCategoryServiceGiven akey, this method first checks if a cached map of TaxCategory keys -> ids is not empty. If not, it returns a completed future that contains an optional that contains what this key maps to in the cache. If the cache is empty, the method populates the cache with the mapping of all TaxCategory keys to ids in the CTP project, by querying the CTP project for all Tax categories.After that, the method returns a
CompletionStage<Optional<String>> in which the result of it's completion could contain anOptionalwith the id inside of it or an emptyOptionalif noTaxCategorywas found in the CTP project with this key.- Specified by:
 fetchCachedTaxCategoryIdin interfaceTaxCategoryService- Parameters:
 key- the key by which aTaxCategoryid should be fetched from the CTP project.- Returns:
 CompletionStage<Optional<String>> in which the result of its completion could contain anOptionalwith the id inside of it or an emptyOptionalif noTaxCategorywas found in the CTP project with this key.
 
- 
fetchMatchingTaxCategoriesByKeys
@Nonnull public java.util.concurrent.CompletionStage<java.util.Set<io.sphere.sdk.taxcategories.TaxCategory>> fetchMatchingTaxCategoriesByKeys(@Nonnull java.util.Set<java.lang.String> keys)Description copied from interface:TaxCategoryServiceGiven aSetof tax category keys, this method fetches a set of all the taxCategories, matching given set of keys in the CTP project, defined in an injectedSphereClient. A mapping of the key to the id of the fetched taxCategories is persisted in an in-memory map.
One must remember key is not required to create TaxCategory but is required to synchronize tax categories.- Specified by:
 fetchMatchingTaxCategoriesByKeysin interfaceTaxCategoryService- Parameters:
 keys- set of tax category keys to fetch matching taxCategories by.- Returns:
 CompletionStage<Map> in which the result of it's completion contains aSetof all matching taxCategories.
 
- 
fetchTaxCategory
@Nonnull public java.util.concurrent.CompletionStage<java.util.Optional<io.sphere.sdk.taxcategories.TaxCategory>> fetchTaxCategory(@Nullable java.lang.String key)Description copied from interface:TaxCategoryServiceGiven a tax category key, this method fetches a tax category that matches given key in the CTP project defined in a potentially injectedSphereClient. If there is no matching tax category an emptyOptionalwill 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.- Specified by:
 fetchTaxCategoryin interfaceTaxCategoryService- Parameters:
 key- the key of the tax category to fetch.- Returns:
 CompletionStage<Optional> in which the result of it's completion contains anOptionalthat contains the matchingTaxCategoryif exists, otherwise empty.
 
- 
createTaxCategory
@Nonnull public java.util.concurrent.CompletionStage<java.util.Optional<io.sphere.sdk.taxcategories.TaxCategory>> createTaxCategory(@Nonnull io.sphere.sdk.taxcategories.TaxCategoryDraft taxCategoryDraft)Description copied from interface:TaxCategoryServiceGiven a resource draft ofTaxCategoryDraft, this method attempts to create a resourceTaxCategorybased 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
CompletionStagein which the result of it's completion contains an instanceOptionalof the resource which was created.- Specified by:
 createTaxCategoryin interfaceTaxCategoryService- Parameters:
 taxCategoryDraft- the resource draft to create a resource based off of.- Returns:
 - a 
CompletionStagecontaining an optional with the created resource if successful otherwise an empty optional. 
 
- 
updateTaxCategory
@Nonnull public java.util.concurrent.CompletionStage<io.sphere.sdk.taxcategories.TaxCategory> updateTaxCategory(@Nonnull io.sphere.sdk.taxcategories.TaxCategory taxCategory, @Nonnull java.util.List<io.sphere.sdk.commands.UpdateAction<io.sphere.sdk.taxcategories.TaxCategory>> updateActions)Description copied from interface:TaxCategoryServiceGiven aTaxCategoryand aList<UpdateAction<TaxCategory>>, this method issues an update request with these update actions on thisTaxCategoryin the CTP project defined in a potentially injectedSphereClient. This method returnsCompletionStage<TaxCategory> in which the result of it's completion contains an instance of theTaxCategorywhich was updated in the CTP project.- Specified by:
 updateTaxCategoryin interfaceTaxCategoryService- Parameters:
 taxCategory- theTaxCategoryto update.updateActions- the update actions to update theTaxCategorywith.- Returns:
 CompletionStage<TaxCategory> containing as a result of it's completion an instance of theTaxCategorywhich was updated in the CTP project or aSphereException.
 
 - 
 
 -